摘要:
通过邮箱找回密码,注册的时候给用户发一个提示到邮箱中或者是通过邮箱验证:下面就是使用邮箱发送的代码://创建邮件信息 MailMessage mailMessage = new MailMessage(); mailMessage.From = "发送的邮箱地址"; mailMessage.To = "收件箱地址"; mailMessage.Subject ="主题" mailMessage.BodyFormat = MailFormat.Html; StringBuilder strBody = new StringBuilder( 阅读全文
摘要:
在对URL进行编码时,该用哪一个?这两都使用上有什么区别吗?测试:stringfile="文件上(传)篇.doc";stringServer_UrlEncode=Server.UrlEncode(file);stringServer_UrlDecode=Server.UrlDecode(Server_UrlEncode);stringHttpUtility_UrlEncode=System.Web.HttpUtility.UrlEncode(file);stringHttpUtility_UrlDecode=System.Web.HttpUtility.UrlDecode( 阅读全文
摘要:
reload方法,该方法强迫浏览器刷新当前页面。语法:location.reload([bForceGet])参数:bForceGet, 可选参数, 默认为 false,从客户端缓存里取当前页。true, 则以GET方式,从服务端取最新的页面, 相当于客户端点击 F5("刷新")replace方法,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后退”来访问已经被替换的URL。语法:location.replace(URL)在实际应用的时候,重新刷新页面的时候,我们通常使用: location.reload( 阅读全文