上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 26 下一页
摘要: 利用visual Studio .NET开发自定义的WinForm控件,恐怕大家都已经很熟悉了。正常情况下,这种控件只能用在基于。NET的Windows application程序开发上,而无法直接嵌入到IE,这不免让人感觉遗憾。 毕竟。NET控件已经不同于在Win32下用Delphi或C++Builder开发的自定义控件。基于。NET开发的任何受控装配件(Assembly)都是IL代码... 阅读全文
posted @ 2007-09-15 17:48 M' 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 问:为什么Session在有些机器上偶尔会丢失? 答:可能和机器的环境有关系,比如:防火墙或者杀毒软件等,尝试关闭防火墙。 问:为什么当调用Session.Abandon时并没有激发Session_End方法? 答:首先Session_End方法只支持InProc(进程内的)类型的Session。其次要激发Session_End方法,必须存在Session(即系统中已经使用Session了),并... 阅读全文
posted @ 2007-09-13 09:18 M' 阅读(433) 评论(0) 推荐(0) 编辑
摘要: new document Home New Revised Tools Forums 关于TBODY标记 关于cells集合 关于tBodies集合 关于display属性 这里填加内容,略去。1 这里填加内容,略去。2 这里填加... 阅读全文
posted @ 2007-09-11 15:49 M' 阅读(723) 评论(0) 推荐(0) 编辑
摘要: 格式说明符 名称 说明 d 短日期模式 显示由与当前线程关联的 DateTimeFormatInfo.ShortDatePattern 属性定义的模式或者由指定格式提... 阅读全文
posted @ 2007-09-08 16:11 M' 阅读(2262) 评论(0) 推荐(0) 编辑
摘要: //正则表达式 //a) using System; using System.Text.RegularExpressions; public bool IsNumber(String strNumber) { Regex objNotNumberPattern=new Regex("[^0-9.-]"); Regex objTwoDotPattern=new Regex("[0-9]*[.][... 阅读全文
posted @ 2007-09-06 17:25 M' 阅读(489) 评论(0) 推荐(0) 编辑
摘要: HttpFileCollection MyFileColl = HttpContext.Current.Request.Files; HttpPostedFile MyPostedFile = MyFileColl[0]; if (MyPostedFile.ContentType.ToString().ToLower().Index... 阅读全文
posted @ 2007-09-06 14:04 M' 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 首先在SQL Server中建立一个图片存储的数库表,ImageData Column为图象二进制数据储存字段 ,ImageContentType Column为图象文件类型记录字段,ImageDescription Column为储蓄图 象文件说明字段,ImageSize Column为储存图象文件长度字段,结构如下: CREATE TABLE [dbo].[ImageStore] ( ... 阅读全文
posted @ 2007-09-05 17:35 M' 阅读(1991) 评论(0) 推荐(0) 编辑
摘要: 来源:http://www.pediy.com/tutorial/chap6/Chap6-3-2.htm 一、DES算法 美国国家标准局1973年开始研究除国防部外的其它部门的计算机系统的数据加密标准,于1973年5月15日和1974年8月27日先后两次向公众发出了征求加密算法的公告。加密算法要达到的目的(通常称为DES 密码算法要求)主要为以下四点: ☆提供高质量的数据保护,防止数据未经... 阅读全文
posted @ 2007-08-28 19:18 M' 阅读(871) 评论(0) 推荐(0) 编辑
摘要: //名称空间 using System; using System.Security.Cryptography; using System.IO; using System.Text; //方法 //加密方法 public string Encrypt(string pToEncrypt, string sKey) { ... 阅读全文
posted @ 2007-08-28 15:20 M' 阅读(9633) 评论(2) 推荐(2) 编辑
摘要: HttpWebRequest request = (HttpWebRequest)WebRequest.Create(addr); // Downloads the XML file from the specified server. HttpWebResponse response = (HttpWebResponse)request.GetResponse(); System.IO.Stre... 阅读全文
posted @ 2007-08-28 10:21 M' 阅读(25458) 评论(4) 推荐(4) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 26 下一页