摘要:
其实,利用ASP.NET输出指定内容的WORD、EXCEL、TXT、HTM等类型的文档很容易的。主要分为三步来完成。 一、定义文档类型、字符编码 Response.Clear(); Response.Buffer= true; Response.Charset="utf-8"; ... 阅读全文
摘要:
using System; using System.IO; using System.Drawing; using System.Drawing.Imaging;public class ImageThumbnail { public Image ResourceImage; private int ImageWidth; private int ImageHeight;... 阅读全文
摘要:
第一章、 Asp.net中服务端控件事件是如何触发的 Asp.net 中在客户端触发服务端事件分为两种情况: 一. WebControls中的Button 和HtmlControls中的Type为submit的HtmlInputButton 这两种按钮最终到客户端的表现形式为: ,这是Form表单的提交按钮,点击以后会作为参数发送到服务端,参数是这样的: 控件的name属... 阅读全文
摘要:
asp.net 中 使页面立即过期?就是避免使用ie的后退键? Response.Expires = 0; //页面缓存期。以分来作单位。 Response.AppendHeader("pragma","no-cache"); //添加头。 Response.AppendHeader( "c... 阅读全文
摘要:
ArrayList bList = (ArrayList)aList.Clone(); foreach (string aStr in bList) { if (aStr.Equals(textBox1.Text)) { aList.Remove... 阅读全文
摘要:
public string GetChineseSpell(string strText) { int len = strText.Length; string myStr = ""; for(int i=0;i 1) { int area = (short)arrCN[0]; int pos = (short)arrCN[1]; int code = (area<<8) + po... 阅读全文
摘要:
可以在html中,放置一些需要有C#程序动态产生的值,而且可以把 html代码片断插到其中。 极其的爽,要发挥它的强大功能,尤其对于 aspx + html混排的页面。 c# 阅读全文
摘要:
做了个二级联动,因为图简单,用了updatepanel,莫名其妙的弹了个错误出来 "不能在 DropDownList 中选择多个项",用以下方法解决了 this.DDL_Subject.ClearSelection(); //加这句清空就没事了 this.DDL_Subject.Items.FindByText(subjectname).Selected = true; 阅读全文
摘要:
阅读全文