摘要:
you can study xls language in the below link :http://www.w3schools.com/xsl/xsl_languages.aspCSS = Style Sheets for HTMLXSL = Style Sheets for XMLthink the xml like html and xsl like css .for example:xml: John Doe JavaScript 10.99 Mary Jones Pho...
阅读全文
posted @ 2013-07-12 13:31
aking96
阅读(217)
推荐(0)
摘要:
How to Read and Load an Excel 2007 or Excel 2010 File Without Using Import/Export UtilityTo read an Excel 2007 or Excel 2010 file using OPENROWSET, run the following query:SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','Excel 12.0;Database=C:\YourFile.xlsx;','SELECT * FROM [
阅读全文
posted @ 2013-07-09 10:29
aking96
阅读(354)
推荐(0)
摘要:
http://jsfiddle.net/
阅读全文
posted @ 2013-07-02 09:00
aking96
阅读(241)
推荐(0)
摘要:
first we need to download the link is :http://files.cnblogs.com/akingyao/itextsharp-all-5.4.2.zipthe reference link ishttp://www.aspdotnet-suresh.com/2013/05/aspnet-export-webpage-with-images-to.htmlin this tutorial you may produce a bug so you need to setenableEventValidation="false"you a
阅读全文
posted @ 2013-06-28 10:13
aking96
阅读(286)
推荐(0)
摘要:
public class Browser { /// /// During static instantiation, only the Netscape flag is checked /// /// /// static Browser() { _isNavigator = HtmlPage.BrowserInformation.Name.Contains("Netscape"); } /// ...
阅读全文
posted @ 2013-06-26 13:14
aking96
阅读(194)
推荐(0)
摘要:
http://ckeditor.com/demo#auto-grow
阅读全文
posted @ 2013-06-24 12:54
aking96
阅读(258)
推荐(0)
摘要:
T-Sql操作Xml数据一、前言SQL Server 2005 引入了一种称为 XML 的本机数据类型。用户可以创建这样的表,它在关系列之外还有一个或多个 XML 类型的列;此外,还允许带有变量和参数。为了更好地支持 XML 模型特征(例如文档顺序和递归结构),XML 值以内部格式存储为大型二进制对象 (BLOB)。用户将一个XML数据存入数据库的时候,可以使用这个XML的字符串,SQL Server会自动的将这个字符串转化为XML类型,并存储到数据库中。随着SQL Server 对XML字段的支持,相应的,T-SQL语句也提供了大量对XML操作的功能来配合SQL Server中XML字段的使
阅读全文
posted @ 2013-06-18 14:23
aking96
阅读(620)
推荐(0)
摘要:
.Net中的System.Xml.Linq命名空间提供了linq to xml的支持例子xml file<note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> <user id="1"> <name>aking</name> <sex>man</
阅读全文
posted @ 2013-06-18 11:10
aking96
阅读(146)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Runtime.InteropServices;namespace AspDoNet.Manage.CommonMethod{ public partial class FunctionList : System.Web.UI.Page { [DllImport("Iphlpapi...
阅读全文
posted @ 2013-06-05 09:54
aking96
阅读(536)
推荐(0)
摘要:
因silverlight不支持DES(X509)加密,服务端与WPF本来是用X509加解密的, 因为要兼容SL,所以改用AES来完成,但是不幸的是在silverlight中虽然支持AES却不支持RijndaelManaged类, 只能使用AesManaged类来实现了,具体实现代码如下:/// <summary> /// 使用AES加密字符串 /// </summary> /// <param name="encryptString">待加密字符串</param> /// <param name="encryp
阅读全文
posted @ 2013-05-30 15:35
aking96
阅读(1359)
推荐(0)