摘要:
在asp.net中页面刷新则会出现重复提交问题解决方法一:提交完成后跳转至新页面解决方法二:网站找的,代码如下namespace StevenBey.Web.UI { public class Page : System.Web.UI.Page { private bool _refreshState; private bool _isRefresh; public bool IsRefresh { get { return... 阅读全文
摘要:
已知有一个XML文件(bookshop.xml)如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?xml version="1.0" encoding="gb2312" ?><bookshop><book genre="fantasy" ISBN="2-2312-2"><title>Oberon Legacy 阅读全文
摘要:
运行时的界面?1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wi 阅读全文
摘要:
设计应用程序时,为了防止一些敏感信息的泄露,通常需要对这些信息进行加密。以用户的登录密码为例,如果密码以明文的形式存储在数据表中,很容易就会被人发现;相反,如果密码以密文的形式储存,即使别人从数据表中发现了密码,也是加密之后的密码,根本不能使用。通过对密码进行加密,能够极大地提高系统的保密性。?123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778using 阅读全文
摘要:
1 //方法一: 2 3 //须添加对System.Web的引用 4 5 using System.Web.Security; 6 7 8 /// 9 10 /// SHA1加密字符串 11 12 /// 13 14 /// 源字符串 15 16 /// 加密后的字符串 17 18 public string SHA1(string source) 19 { ... 阅读全文
摘要:
protected void Page_Load(object sender, EventArgs e) { //打开登录页面时获取客户端cookie值并写入前台控件中 HttpCookie cookie = Request.Cookies["name"]; if (cookie == null) { UserName.Text = ""; } else { ... 阅读全文
摘要:
?1//1.?12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576System.Globalization.NumberFormatInfo provider = new System.Globalization.NumberFormatInfo(); provider.NumberDecimalDigits =intDecLength; //要设定的小数位数 d 阅读全文