随笔分类 - ASP.NET
索引器
摘要:class myListBox { protected ArrayList data = new ArrayList(); public object this[int idx] { get ...
阅读全文
.net 数据库存储
摘要:SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["ConnectionString"]); SqlCommand myCommand = new SqlCommand("CustomerAdd", myConnection); /...
阅读全文
web print
摘要:最近在项目中做到打印方面的.以为页面有很多查询方面的控件,那么在打印的时候是不需要的,只需要我们查询的报表,那么就可以在打印时把不需要打印的控件全部隐藏掉 function printpr() //预览函数 { document.getElementById("div1").style.display="none"; document.getElementById("print").sty...
阅读全文
ASP.NET中将数据输出到WORD、EXCEL、TXT、HTM
摘要:其实,利用ASP.NET输出指定内容的WORD、EXCEL、TXT、HTM等类型的文档很容易的。主要分为三步来完成。 一、定义文档类型、字符编码 Response.Clear(); Response.Buffer= true; Response.Charset="utf-8"; //下面这行很重要, attachment 参数表示作为附件下载,您可以改成 online在线打...
阅读全文
.net数据存储 xml读取
摘要:SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["ConnectionString"]); SqlCommand myCommand = new SqlCommand("CustomerAdd", myConnection); /...
阅读全文
浙公网安备 33010602011771号