EditNews.aspx.cs
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:6k
源码类别:

Email客户端

开发平台:

Visual C++

  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. using System.Configuration;
  5. using System.Collections;
  6. using System.Web;
  7. using System.Web.Security;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.WebControls.WebParts;
  11. using System.Web.UI.HtmlControls;
  12. public partial class EditNews : System.Web.UI.Page
  13. {
  14.     Db ebdoing = new Db();
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         //如果不判断,修改的内容不会更新,折磨了我很长时间。
  18.         if (!IsPostBack)
  19.         {
  20.             if (Session["Admin"] == null)
  21.             {
  22.                 Response.Redirect("Admin/adminlogin.aspx", true);
  23.             }
  24.             Session["ClassID"] = 1;
  25.             Session["imgFname"] = "";
  26.             Img.Visible = false;
  27.             //连接SQL Server数据库
  28.             SqlConnection MyConnection;
  29.             MyConnection = new SqlConnection(ebdoing.strConn);
  30.             SqlDataAdapter Da = new SqlDataAdapter("select ClassID, Class from Class", MyConnection);
  31.             MyConnection.Open();
  32.             DataSet Ds = new DataSet();
  33.             Da.Fill(Ds, "Class");
  34.             DdlClass.DataSource = Ds.Tables["Class"].DefaultView;
  35.             DdlClass.DataTextField = "Class";
  36.             DdlClass.DataValueField = "ClassID";
  37.             DdlClass.DataBind();
  38.             //读取与NewsID对应的新闻,填充修改界面的相关控件
  39.             //取得地址栏传入的参数
  40.             Session["NewsID"] = Request.QueryString["NewsID"];
  41.             String strCom = "SELECT biaoti, zhaizi, neirong, ClassID FROM News where NewsID=" + Session["NewsID"].ToString();
  42.             SqlCommand command = new SqlCommand(strCom, MyConnection);
  43.             SqlDataReader reader = command.ExecuteReader();
  44.             //取得新闻的实际内容
  45.             if (reader.Read())
  46.             {
  47.                 biaoti.Text = reader[0].ToString();
  48.                 zhaizi.Text = reader[1].ToString();
  49.                 content.Text = reader[2].ToString();
  50.                 DdlClass.SelectedIndex = Convert.ToInt16(reader[3]) - 1;
  51.             }
  52.             MyConnection.Close();
  53.         }
  54.     }
  55.     protected void submit_Click(Object sender, EventArgs e)
  56.     {
  57.         //当单击提交按钮之后执行下面的代码
  58.         //连接SQL Server数据库
  59.         SqlConnection MyConnection;
  60.         MyConnection = new SqlConnection(ebdoing.strConn);
  61.         MyConnection.Open();
  62.         //定义变量
  63.         SqlCommand MyCommand;
  64.         String ConnStr;
  65.         DateTime now = DateTime.Now;
  66.         String neirong;
  67.         //内容处理
  68.         neirong = content.Text;
  69.         String zh = "";
  70.         String tmpstr = "";
  71.         for (int i = 0; i < neirong.Length; i++)
  72.         {
  73.             zh = neirong.Substring(i, 1);
  74.             if (zh == " ") { zh = " "; }
  75.             if (zh == "n") { zh = "<br>"; }
  76.             if (zh == "t") { zh = ""; }
  77.             tmpstr = tmpstr + zh;
  78.         }
  79.         neirong = tmpstr;
  80.         if ((biaoti.Text == "") || (neirong == ""))
  81.         { Label1.Text = "标题或内容不能为空!"; }
  82.         else if (biaoti.Text.Length >= 100)
  83.         { Label1.Text = "你的标题太长了!"; }
  84.         else
  85.         {
  86.             //修改记录
  87.             if (Session["imgFname"].ToString() != null)
  88.             {
  89.                 ConnStr = "Update News Set ClassID='" + Session["ClassID"].ToString() + "', biaoti='" + biaoti.Text + "', zhaizi= '" + zhaizi.Text + "' ,neirong= '" + neirong + "', shijian='" + now.ToString() + "', img='" + Session["imgFname"].ToString() + "' Where NewsID=" + Session["NewsID"].ToString();
  90.             }
  91.             else 
  92.             {
  93.                 ConnStr = "Update News Set ClassID='" + Session["ClassID"].ToString() + "', biaoti='" + biaoti.Text + "', zhaizi= '" + zhaizi.Text + "' ,neirong= '" + neirong + "', shijian='" + now.ToString() +  "' Where NewsID=" + Session["NewsID"].ToString();
  94.             }
  95.             MyCommand = new SqlCommand(ConnStr, MyConnection);
  96.             MyCommand.ExecuteNonQuery();
  97.             Label1.Text = "修改成功!";
  98.         }
  99.         //修改完成将相关控件置空
  100.         biaoti.Text = "";
  101.         zhaizi.Text = "";
  102.         content.Text = "";
  103.         Img.ImageUrl = "";
  104.         Img.Visible = false;
  105.         Session.Remove("imgFname");
  106.     }
  107.     protected void reset_Click(Object sender, EventArgs e)
  108.     {
  109.         //当单击取消按钮之后执行下面代码
  110.         biaoti.Text = "";
  111.         zhaizi.Text = "";
  112.         content.Text = "";
  113.         Img.ImageUrl = "";
  114.         Img.Visible = false;
  115.         Session.RemoveAll();
  116.     }
  117.     protected void Button1_Click(object sender, EventArgs e)
  118.     {
  119.         //检查上传文件不为空
  120.         if (myFile.HasFile)
  121.         {
  122.             string nam = myFile.PostedFile.FileName;
  123.             //取得文件名(包括路径)里最后一个"."的索引
  124.             int i = nam.LastIndexOf(".");
  125.             //取得文件扩展名
  126.             string newext = nam.Substring(i);
  127.             //这里自动根据日期和文件大小不同为文件命名,确保文件名不重复。
  128.             DateTime now = DateTime.Now;
  129.             string newname = now.DayOfYear.ToString() + myFile.PostedFile.ContentLength.ToString();
  130.             //保存文件到你所要的目录,这里是IIS根目录下的upfiles目录.你可以改变.
  131.             //注意: 我这里用Server.MapPath()取当前文件的绝对目录.在asp.net里""必须用"\"代替
  132.             myFile.PostedFile.SaveAs(Server.MapPath("Images\" + newname + newext));
  133.             Session["imgFname"] = "Images/" + newname + newext;
  134.             Img.Visible = true;
  135.             Img.ImageUrl =  Session["imgFname"].ToString();
  136.         }
  137.         else
  138.         {
  139.             Response.Write("<script>alert('如果要上传图片,请先选择一张图片!');history.go(-1);</script>");
  140.         }
  141.     }
  142.     protected void DdlClass_SelectedIndexChanged(object sender, EventArgs e)
  143.     {
  144.         Session["ClassID"] = DdlClass.SelectedValue;
  145.     }
  146. }