刚刚写的一个加密算法
摘要:using System;namespace UcAspClass{ /**//// /// Encrypt 密码加密算法 /// http://www.hzren.net http://www.ucasp.net /// 作者:QQ 36279010 /// public class Encrypt { public Encrypt...
阅读全文
如何在DropDownList第一項加入新項目
摘要:若您的DropDownList項目來自資料庫, 您可以這麼寫:DataSet ds = ....;myDropDownList.DataSource = ds.Tables[0].DefaultView;myDropDownList.DataTextField="vDesc";myDropDownList.DataValueField="ID";myDropDownList.DataBind();...
阅读全文