09 2005 档案

 
刚刚写的一个加密算法
摘要:using System;namespace UcAspClass{ /**//// /// Encrypt 密码加密算法 /// http://www.hzren.net http://www.ucasp.net /// 作者:QQ 36279010 /// public class Encrypt { public Encrypt... 阅读全文
posted @ 2005-09-13 15:57 祥子哥哥 阅读(366) 评论(0) 推荐(0)
如何在DropDownList第一項加入新項目
摘要:若您的DropDownList項目來自資料庫, 您可以這麼寫:DataSet ds = ....;myDropDownList.DataSource = ds.Tables[0].DefaultView;myDropDownList.DataTextField="vDesc";myDropDownList.DataValueField="ID";myDropDownList.DataBind();... 阅读全文
posted @ 2005-09-06 23:00 祥子哥哥 阅读(435) 评论(0) 推荐(0)