user_board_imageupload.aspx.cs
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:5k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.OleDb;
  12. using System.Configuration;
  13. using System.Text;
  14. using System.IO;
  15. namespace kuangren
  16. {
  17. /// <summary>
  18. /// user_board_imageupload 的摘要说明。
  19. /// </summary>
  20. public class user_board_imageupload : System.Web.UI.Page
  21. {
  22. protected System.Web.UI.HtmlControls.HtmlInputButton Button1;
  23. protected System.Web.UI.HtmlControls.HtmlInputFile myFile;
  24. protected System.Web.UI.WebControls.Label Label1;
  25. public string mmstr1;
  26. public string strFileExt;
  27. public int filelength;
  28. protected int intRunTime;
  29. protected DateTime dtStartTime = DateTime.Now;
  30. protected System.Web.UI.HtmlControls.HtmlInputButton Upload;
  31. public string usercookies;
  32. public string newname;
  33. protected System.Data.OleDb.OleDbCommand cmd;
  34. protected System.Data.OleDb.OleDbConnection conn;
  35. public string passhow;
  36. public    DataSet dsPending;
  37. public string sql;
  38. public string passshow;
  39. public string OleDbsql;
  40. private void Page_Load(object sender, System.EventArgs e)
  41. {
  42. if (Request.Cookies["jusername"]!=null)
  43. {
  44. usercookies=Request.Cookies["jusername"].Value;
  45. }
  46. else
  47. {
  48. Response.Redirect("logine.aspx");
  49. }
  50. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  51. sql="SELECT u_images from userinfo where u_user='"+usercookies+"'";
  52. dsPending=new DataSet();
  53. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  54. adWord.Fill(dsPending,"userinfo");
  55. Page.DataBind();
  56. passshow=Convert.ToString(dsPending.Tables[0].Rows[0]["u_images"]);
  57. }
  58. #region Web 窗体设计器生成的代码
  59. override protected void OnInit(EventArgs e)
  60. {
  61. //
  62. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  63. //
  64. InitializeComponent();
  65. base.OnInit(e);
  66. }
  67. /// <summary>
  68. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  69. /// 此方法的内容。
  70. /// </summary>
  71. private void InitializeComponent()
  72. {    
  73. this.Upload.ServerClick += new System.EventHandler(this.Upload_ServerClick);
  74. this.Load += new System.EventHandler(this.Page_Load);
  75. }
  76. #endregion
  77. private void Upload_ServerClick(object sender, System.EventArgs e)
  78. {
  79. if(myFile.PostedFile!=null) 
  80. //定义变量 
  81. string strFileName = myFile.PostedFile.FileName;
  82. strFileExt = System.IO.Path.GetExtension(strFileName).ToString();//
  83. filelength=Convert.ToInt32(myFile.PostedFile.ContentLength.ToString());
  84. string path = Server.MapPath("./webdesign/userupload"); 
  85. string nam = myFile.PostedFile.FileName ; 
  86. int i= nam.LastIndexOf("\") ; 
  87. //取得当前日期作为文件名
  88. DateTime now =DateTime.Now;
  89. newname=now.ToString();
  90. newname=newname.Replace(" ","");
  91. newname=newname.Replace("-","");
  92. newname=newname.Replace(":","");
  93. Random rnd = new Random();
  94. double rndNum=rnd.NextDouble()*10000000000000;
  95. newname=newname+rndNum.ToString().Substring(0,rndNum.ToString().LastIndexOf("."))+strFileExt;
  96. //获取结束
  97. string newnm ="\"+newname+"" ;
  98. path += newnm;
  99. if(File.Exists(path) == true)
  100. {
  101. Label1.Text = "<font color=red>文件名重复,请更改文件名重新上传..</font>";
  102. return;
  103. }
  104. //改变下面的“c:\"到你想要保存的地址。 
  105. if ((strFileExt==".jpg"||strFileExt==".jpeg"||strFileExt==".gif")&&(filelength<1024*15))
  106. {
  107. string path1 =Server.MapPath("./webdesign/userupload/"+passshow+""); 
  108. if(File.Exists(path1) == true)
  109. {
  110. System.IO.File.Delete(Server.MapPath("./webdesign/userupload/"+passshow+""));
  111. }
  112. myFile.PostedFile.SaveAs(path);
  113. Label1.Text ="<font color=red>文件上传成功, </font><a href='user_board_imageupload.aspx'><font color=red>请返回..</font></a>";
  114. StringBuilder sb=new StringBuilder();
  115. ArrayList values=new ArrayList();
  116. sb.Append("update [userinfo] set u_images='"+newname+"' where u_user='"+usercookies+"'");            
  117. OleDbsql=String.Format(sb.ToString(),values.ToArray());
  118. cmd=new OleDbCommand(OleDbsql,conn);
  119. conn.Open();
  120. bool doredirect=true;
  121. try
  122. {
  123. cmd.ExecuteNonQuery();
  124. }
  125. catch
  126. {
  127. doredirect=false;
  128. }
  129. finally
  130. {
  131. conn.Close();
  132. }
  133. if(doredirect)
  134. {
  135. }
  136. else
  137. {
  138. Response.Redirect("index.asp");
  139. }
  140. }
  141. else
  142. {Label1.Text ="<font color=red>1、上传支持格式:GIF,JPG,JPEG。<br>2、文件不能大于15K。<a href='user_board_imageupload.aspx'><font color=red>重新上传..</font></a></font>";}
  143. }
  144. }
  145. }