ST_Admin_addnews.aspx.cs
上传用户:wyx_1982
上传日期:2020-04-18
资源大小:699k
文件大小:2k
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace ST_GROUP.EnterpriseOnlineInfoManage
- {
- /// <summary>
- /// ST_Admin_addnews 的摘要说明。
- /// </summary>
- public partial class ST_Admin_addnews : System.Web.UI.Page
- {
- ST_DataBase ST_database = new ST_DataBase();
-
- protected void Page_Load(object sender, System.EventArgs e)
- {
- if (Session["admin"] == null)
- {
- //Response.Write("<script>alert("您还没有登录,不能进行接下来的操作,请登录后断续!");</script>");
- Response.Redirect("ST_contraller.aspx?cname=noadmin");
- }// 在此处放置用户代码以初始化页面
- if(!Page.IsPostBack)
- {
- DataTable ST_dt = new DataTable();
- string strsql = "select * from ST_newsclass";
- ST_dt = ST_database.ReadTable(strsql);
- newsclass.DataSource = ST_dt;
- newsclass.DataTextField = "ST_classname";
- newsclass.DataValueField = "ST_classname";
- newsclass.DataBind();
-
- }
- // 在此处放置用户代码以初始化页面
- }
- #region Web 窗体设计器生成的代码
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
-
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- }
- #endregion
- protected void Button1_Click(object sender, System.EventArgs e)
- {
- string ST_strsql;
- ST_strsql = "insert into ST_tNews (ST_newstitle,ST_newscontent,ST_newsclass,ST_addtime,ST_newsclick) values ('"+ newstitle.Text +"','"+ newscon.Text +"','" + newsclass.SelectedValue + "','"+ System.DateTime.Now.ToString() +"',0)";
- ST_database.execsql(ST_strsql);
- Response.Write("<script>alert("新闻发表成功!");</script>");
- newscon.Text = "";
- newstitle.Text = "";
- }
- }
- }