摘要:
1 function createXMLHttp() { 2 if(window.XMLHttpRequest){ 3 return new XMLHttpRequest(); 4 } else if(window.ActiveXObject){ 5 ret... 阅读全文
摘要:
方法一: byte[] byte1 = FileUpload1.FileBytes; byte[] byte2 = FileUpload2.FileBytes; byte[] a1 = Encoding.UTF8.GetBytes("["); ... 阅读全文
摘要:
  阅读全文
摘要:
分享jquery网站:http://www.css88.com/jqapi-1.9/focusout/ 1 $(document).ready(function() { 2 3 var bool_user = false; 4 ... 阅读全文
摘要:
static void Main(string[] args) { book book = new book();//实体类 booktest b1 = new booktest(); book.... 阅读全文
摘要:
先写一个xml文件: 1 2 3 4 5 编译原理 6 佚名 7 30.00 8 9 10 11 计算机操作系统12 test13 28.0014 15 View Code1.使用XmlDocument 使用XmlDoc... 阅读全文
摘要:
public class Utility:Page { #region 数据转换 /// /// 返回对象obj的String值,obj为null时返回空值。 /// /// 对象。 /// 字符串。 ... 阅读全文
摘要:
var pageIndex = 0;var pageSize = 10;$(function () { $("#btnSearch").click(function () { var name = $("#txtSearch").val(); pageIndex =... 阅读全文
摘要:
前台用DataList绑定 '> " target="_blank" title="点击放大看"> ' /> ... 阅读全文
摘要:
protected void Page_Load(object sender, EventArgs e) { var oAuthConsumerKey = "你的key"; var oAuthConsumerSecret = "你的secr... 阅读全文
摘要:
(1).使用StreamReader读取文件,然后一行一行的输出。 public void Read(string path) { StreamReader sr = new StreamReader(path,Encoding.Default); ... 阅读全文
摘要:
/// /// DataSet实例 /// DataList名称 /// 分页大小 public static string GetPageNum(DataSet ds, DataList datalistname, int ... 阅读全文
摘要:
//三种sql分页语句SELECT TOP 分页尺寸 *FROM ( SELECT ROW_NUMBER() OVER (ORDER BY id) AS RowNumber,* FROM Blobs ) AWHERE RowNumber > 分页尺寸*(页数... 阅读全文
摘要:
using System.Net.Mail; /// 发送邮件 /// /// /// protected void ForMail(string name, string mail) { ... 阅读全文