03 2014 档案

摘要:/**//// /// DES /// public class DES_ { private DES mydes; public string Key; public string IV; /**//// /// 对称加密类的构造函数 /// public DES_(string key) { mydes = new DESCryptoServiceProvider(); Key = key; ... 阅读全文
posted @ 2014-03-19 10:57 Follow-your-heart
摘要:System.Text.StringBuilder stsb = new System.Text.StringBuilder(); stsb.Append(string.Format("当前请求的虚拟路径是:{0}", Server.HtmlEncode(Request.CurrentExecutionFilePath))); stsb.Append(string.Format("当前请求的url的绝对路径是:{0}", Server.HtmlEncode(Request.Url.AbsolutePath))); stsb.Ap... 阅读全文
posted @ 2014-03-07 09:45 Follow-your-heart