[*] Hello Snoopy

.NET and Flash Blog
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 27 下一页

2004年8月4日

ASP中的防盗链

摘要: Serv_url then response.write "非法链接!" '防止盗链 response.endend ifif Request.Cookies("Logined")="" then response.redirect "/login.asp" '需要登陆!end ifFunction GetFileName(longname)'/folder1/folder2/file.asp... 阅读全文

posted @ 2004-08-04 17:34 HelloSnoopy 阅读(617) 评论(0) 推荐(0) 编辑
非WEBForm的MD5字符串加密

摘要: /**//// /// MD5加密字符串/// /// 要加密的字串/// public static string encrypt(string str){ byte[] bValue; byte[] bHash; string result=null; System.Security.Cryptography.MD5CryptoServiceProvider md5 ... 阅读全文

posted @ 2004-08-04 17:28 HelloSnoopy 阅读(431) 评论(0) 推荐(0) 编辑

2004年8月3日

.NET环境下水晶报表使用总结

摘要: http://www.430000.net/ShowArticle.asp?ArticleID=50&ArticlePage=1 阅读全文

posted @ 2004-08-03 21:31 HelloSnoopy 阅读(355) 评论(0) 推荐(0) 编辑
TreeView专题

摘要: http://www.430000.net/ShowArticle.asp?ArticleID=44&ArticlePage=1 阅读全文

posted @ 2004-08-03 21:29 HelloSnoopy 阅读(341) 评论(0) 推荐(0) 编辑
去掉集合中的重复元素

摘要: 这样:object item;ArrayList arrNew = new ArrayList();for(int i=0;i<arr.Count;i++){ item = arr[i]; if(!arr.Contains(item)){ arrNew.add(item);}} 阅读全文

posted @ 2004-08-03 11:07 HelloSnoopy 阅读(652) 评论(1) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 27 下一页