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

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 AddNews : System.Web.UI.Page
  13. {
  14.     Db ebdoing = new Db();
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         if (!IsPostBack)
  18.         {
  19.             Session["ClassID"] = 1;
  20.             Session["imgFname"] = "";
  21.             Img.Visible = false;
  22.             SqlConnection MyConnection;
  23.             //连接SQL Server数据库
  24.             MyConnection = new SqlConnection(ebdoing.strConn);
  25.             SqlDataAdapter Da = new SqlDataAdapter("select ClassID, Class from Class", MyConnection);
  26.             MyConnection.Open();
  27.             DataSet Ds = new DataSet();
  28.             Da.Fill(Ds, "Class");
  29.             DdlClass.DataSource = Ds.Tables["Class"].DefaultView;
  30.             DdlClass.DataTextField = "Class";
  31.             DdlClass.DataValueField = "ClassID";
  32.             DdlClass.DataBind();
  33.         }
  34.     }
  35.     protected void submit_Click(Object sender, EventArgs e)
  36.     {
  37.         //当单击提交按钮之后执行下面的代码
  38.         SqlConnection MyConnection;
  39.         SqlCommand MyCommand;
  40.         String ConnStr;
  41.         String ClassID = "1";
  42.         DateTime now = DateTime.Now;
  43.         //连接SQL Server数据库
  44.         MyConnection = new SqlConnection(ConfigurationManager.ConnectionStrings["NewsConnectionString"].ConnectionString);
  45.         MyConnection.Open();
  46.         String neirong;
  47.         //添加WEB编辑器后,WEB编辑器后具有编码功能,不能再进行编码。
  48.         //neirong = Server.HtmlEncode(content.Text);
  49.         neirong = content.Text;
  50.         String zh = "";
  51.         String tmpstr = "";
  52.         for (int i = 0; i < neirong.Length; i++)
  53.         {
  54.             zh = neirong.Substring(i, 1);
  55.             if (zh == " ") { zh = " "; }
  56.             if (zh == "n") { zh = "<br>"; }
  57.             if (zh == "t") { zh = ""; }
  58.             tmpstr = tmpstr + zh;
  59.         }
  60.         neirong = tmpstr;
  61.         if ((biaoti.Text == "") || (neirong == ""))
  62.         { Label1.Text = "标题或内容不能为空!"; }
  63.         else if (biaoti.Text.Length >= 100)
  64.         { Label1.Text = "你的标题太长了!"; }
  65.         else
  66.         {
  67.             if (Session["ClassID"] != null)
  68.             {
  69.                 ClassID = Session["ClassID"].ToString();
  70.             }
  71.             //将新记录插入到数据库中
  72.             ConnStr = "insert into News(ClassID,biaoti,zhaizi,neirong,shijian,img,counter) VALUES('" + ClassID + "', '" + biaoti.Text + "', '" + zhaizi.Text + "', '" + neirong + "', '" + now.ToString() + "', '" + Session["imgFname"].ToString() + "', 0)";
  73.             //Response.Write(ConnStr);
  74.             //Response.End();
  75.             MyCommand = new SqlCommand(ConnStr, MyConnection);
  76.             MyCommand.ExecuteNonQuery();
  77.             Label1.Text = "增加成功!";
  78.         }
  79.         biaoti.Text = "";
  80.         zhaizi.Text = "";
  81.         content.Text = "";
  82.         Img.ImageUrl = "";
  83.         Img.Visible = false;
  84.     }
  85.     protected void reset_Click(Object sender, EventArgs e)
  86.     {
  87.         //当单击取消按钮之后执行下面代码
  88.         biaoti.Text = "";
  89.         zhaizi.Text = "";
  90.         content.Text = "";
  91.         Img.ImageUrl = "";
  92.         Img.Visible = false;
  93.         Session.RemoveAll();
  94.     }
  95.     protected void Button1_Click(object sender, EventArgs e)
  96.     {
  97.         //检查上传文件不为空
  98.         if (myFile.PostedFile != null)
  99.         {
  100.             string nam = myFile.PostedFile.FileName;
  101.             //取得文件名(包括路径)里最后一个"."的索引
  102.             int i = nam.LastIndexOf(".");
  103.             //取得文件扩展名
  104.             string newext = nam.Substring(i);
  105.             //这里自动根据日期和文件大小不同为文件命名,确保文件名不重复。
  106.             DateTime now = DateTime.Now;
  107.             string newname = now.DayOfYear.ToString() + myFile.PostedFile.ContentLength.ToString();
  108.             //保存文件到你所要的目录,这里是IIS根目录下的upfiles目录.你可以改变.
  109.             //注意: 我这里用Server.MapPath()取当前文件的绝对目录.在asp.net里""必须用"\"代替
  110.             myFile.PostedFile.SaveAs(Server.MapPath("Images\" + newname + newext));
  111.             Session["imgFname"] = "Images/" + newname + newext;
  112.             Img.Visible = true;
  113.             Img.ImageUrl =  Session["imgFname"].ToString();
  114.         }
  115.         else
  116.         {
  117.             Response.Write("<script>alert('请先选择一张图片!');history.go(-1);</script>");
  118.         }
  119.     }
  120.     protected void DdlClass_SelectedIndexChanged(object sender, EventArgs e)
  121.     {
  122.         Session["ClassID"] = DdlClass.SelectedValue;
  123.     }
  124. }