摘要:
View Code 1 System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient(); 2 client.Host = "smtp.qq.com"; 3 client.UseDefaultCredentials = false; 4 client.Credentials = new System.Net.NetworkCredential("邮箱用户名", "邮箱密码"); 5 client.DeliveryMethod = System.Net.Mail.S 阅读全文
摘要:
Session是放在服务器上的,过期与否取决于服务器的的设定;Coolie是存在于客户端上的,过期与否可以在Cookie生成的时候设置进去。1、Cookie数据存放在客户的浏览器上,Session数据放在服务器上;2、Cookie不是安全的,别人可以分析存放在本地的Cookie并进行Cookie欺骗;考虑到安全应当使用Session;3、Session会在一定的时间内保存在服务器上,当访问增多,会比较占用你的服务器资源,考虑减轻服务器的压力,应当使用Cookie;4、单个Cookie在客户端的限制是3kb;通常情况下:将登陆信息保存在Session中,其他信息可放在Cookie中。Cookie 阅读全文
摘要:
一直不喜欢用Gridview,可是任务说明要用Gridview的RowCommand事件,把代码整理如下:View Code 1 protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) 2 { 3 if (e.CommandName == "Up") 4 { 5 string[] skey = e.CommandArgument.ToString().Split(','); 6 7 SqlConnection con = new SqlConnection( 阅读全文
摘要:
查msdn,截图如下:代码如下:View Code 1 if (this.FileUpload1.HasFile) 2 { 3 string filename = this.FileUpload1.FileName;//获得文件名 4 string fileExtension = Path.GetExtension(filename).ToUpper();//获得扩展名 5 string filenameforSave = DateTime.Now.ToFileTimeUtc().ToString() ; 6 double size = this.FileUpload1.PostedFile. 阅读全文