欢迎来到天天文库
浏览记录
ID:8532588
大小:266.50 KB
页数:61页
时间:2018-03-31
《软件著作权源程序模板》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、源程序清单办公自动化系统60usingSystem;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Web;usingSystem.Web.SessionState;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.HtmlControls;usingSystem.Configuration;usingSystem.Data.SqlClien
2、t;namespaceOfficeOnline{//////AddAdvice的摘要说明。///publicclassAddAdvice:System.Web.UI.Page{protectedSystem.Web.UI.WebControls.TextBoxtbxempname;protectedSystem.Web.UI.WebControls.TextBoxtbxtitle;protectedSystem.Web.UI.WebControls.TextBoxtbxcontent;protectedSystem.Web.UI.WebCo
3、ntrols.ButtonbtnSubmit;privatevoidPage_Load(objectsender,System.EventArgse){//在此处放置用户代码以初始化页面}#regionWeb窗体设计器生成的代码overrideprotectedvoidOnInit(EventArgse){////CODEGEN:该调用是ASP.NETWeb窗体设计器所必需的。//InitializeComponent();base.OnInit(e);}//////设计器支持所需的方法-不要使用代码编辑器修改///此方法的内容。///pr
4、ivatevoidInitializeComponent(){60this.btnSubmit.Click+=newSystem.EventHandler(this.btnSubmit_Click);this.Load+=newSystem.EventHandler(this.Page_Load);}#endregionprivatevoidbtnSubmit_Click(objectsender,System.EventArgse){//创建数据库连接和命令对象SqlConnectionobjconn=newSqlConnection(ConfigurationSetting
5、s.AppSettings["connstr"]);objconn.Open();SqlCommandobjcmd=newSqlCommand("AddAdvice",objconn);//设定命令类型为存储过程objcmd.CommandType=CommandType.StoredProcedure;//添加参数//员工姓名SqlParameterparamEmpName=newSqlParameter("@EmpName",SqlDbType.NVarChar,20);paramEmpName.Value=tbxempname.Text;objcmd.Parameters
6、.Add(paramEmpName);//标题SqlParameterparamTitle=newSqlParameter("@Title",SqlDbType.NVarChar,50);paramTitle.Value=tbxtitle.Text;objcmd.Parameters.Add(paramTitle);//内容SqlParameterparamContent=newSqlParameter("@Content",SqlDbType.NVarChar,4000);paramContent.Value=tbxcontent.Text;objcmd.Parameters
7、.Add(paramContent);//执行命令objcmd.ExecuteNonQuery();//关闭数据库连接objconn.Close();Response.Redirect("Advice.aspx");}}}usingSystem;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Web;usingSystem.Web.Sessi
此文档下载收益归作者所有