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

.net编程

开发平台:

C#

  1. <% @ Page Language="C#" %>
  2. <% @ Import Namespace="System.Data" %>
  3. <% @ Import Namespace="System.Data.OleDb" %>
  4. <Script Language="C#" Runat="Server">
  5. OleDbConnection MyConn;
  6. OleDbCommand com_modify;
  7. public String UserName;
  8. public String Pass;
  9. public String Sex;
  10. public String mail;
  11. public String QQ;
  12. public String Loca;
  13. public String Sign;
  14. public String sql_adduser;
  15. public String sql_check;
  16. public int check=0;
  17. public String er;
  18. public string face;
  19. public string face_url;
  20. public string head_type;
  21. public int width;
  22. public int height;
  23. public string HeadImg;
  24. public void Page_Load(Object src,EventArgs e)
  25. {
  26. UserName=Request.Form["UserName"];
  27. Pass=Request.Form["PassWord"];
  28. Sex=Request.Form["Sex"];
  29. mail=Request.Form["mail"];
  30. QQ=Request.Form["QQ"];
  31. Loca=Request.Form["Location"];
  32. Sign=Request.Form["Sign"];
  33. head_type=Request.Form["head_type"];
  34. width=Int32.Parse(Request.Form["width"].ToString());
  35. height=Int32.Parse(Request.Form["height"].ToString());
  36. face=Request.Form["face"];
  37.  if (head_type=="1"){
  38.  HeadImg=face;
  39.  }
  40. else {
  41.  HeadImg=""+face_url;
  42.  }
  43. HeadImg=HeadImg.Replace("'","''");
  44.  //连接语句
  45.  string MyConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source="+Server.MapPath(".")+"..\DataBase\ld1.mdb;";
  46.  //定义sql语句
  47.  sql_modify="update usertable set Pass='"+Pass+"',sex="+sex+",mail='"+mail+"',QQ="+QQ+",Loca='"+Loca+"',Sign='"+Sign+"',width="+width+",height="+height;
  48.  MyConn = new OleDbConnection(MyConnString);
  49.  MyConn.Open();
  50.  OleDbCommand com_modify = new OleDbCommand(sql_modify,MyConn);
  51.  com_add.ExecuteNonQuery();
  52. </script>
  53. <html>
  54. <head>
  55. <title></title>
  56. <link href="css/css.css" rel="stylesheet" type="text/css">
  57. </head>
  58. <body class=ziti>
  59. </body>
  60. </html>