shAdd.aspx.cs
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:
Email客户端
开发平台:
Visual C++
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- public partial class manage_shAdd : System.Web.UI.Page
- {
- BaseClass bc = new BaseClass();
- protected void Page_Load(object sender, EventArgs e)
- {
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- bc.ExecSQL("INSERT INTO tbNews( Title, Content, Style, Type, IssueDate)VALUES ('" + TextBox1.Text + "', '" + TextBox2.Text + "', '社会现象', '" + DropDownList1.Text + "', '" + DateTime.Now.ToString("yyyy-MM-dd") + "')");
- Response.Write(bc.MessageBox("添加成功!"));
- }
- protected void Button2_Click(object sender, EventArgs e)
- {
- TextBox1.Text = "";
- TextBox2.Text = "";
- }
- }