代码拉取完成,页面将自动刷新
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 addjianyi : WebPage
{
public string CurUrl = "";
public string action = "";
public string getid = "";
protected void Page_Load(object sender, EventArgs e)
{
this.VerifyPage();
try
{
action = Request.QueryString.Get("act");
CurUrl = Request.QueryString.Get("url");
getid = Request.QueryString.Get("id");
}
catch
{ }
if (!Page.IsPostBack)
{
if (action == "edit")
{
BindData();
}
}
}
public void BindData()
{
JianYi jy = new JianYi();
jy.id = int.Parse(getid);
jy.userid = CurrentUser.UserID;
string mytype = jy.Select_(jy).types;
string myword = jy.Select_(jy).content;
this.dxtype.SelectedValue = mytype;
this.dxcontent.Text = myword;
}
public void InsertData()
{
int _UserID = CurrentUser.UserID;
string _UserName = CurrentUser.UserName;
string _dxtype = dxtype.SelectedValue;
string _DxContent = dxcontent.Text;
JianYi jy = new JianYi();
jy.userid = _UserID;
jy.username = _UserName;
jy.content = _DxContent;
jy.types = _dxtype;
jy.addtime = DateTime.Now.ToString();
if (jy.Insert(jy))
{
if (CurUrl != "")
{
ShowMsgAndCloseAndLocation("建议信息提交成功。", CurUrl, Page);
}
else
{
ShowMsgAndCloseSelf("建议信息提交成功。",Page);
}
}
else
{
ShowMsg("建议信息提交失败,请重新来过!", Page);
}
}
public void UpdateData()
{
int _UserID = CurrentUser.UserID;
string _UserName = CurrentUser.UserName;
string _dxtype = dxtype.SelectedValue;
string _DxContent = dxcontent.Text;
JianYi jy = new JianYi();
jy.id = int.Parse(getid);
jy.userid = _UserID;
jy.username = _UserName;
jy.content = _DxContent;
jy.types = _dxtype;
if (CurUrl != "")
{
if (jy.Update(jy))
{
ShowMsgAndCloseAndLocation("建议信息修改成功。", CurUrl, Page);
}
else
{
ShowMsg("建议信息修改失败,请重新来过!", Page);
}
}
}
protected void Button1_Click(object sender, EventArgs e)
{
if (action == "add")
{
InsertData();
}
else if(action == "edit")
{
UpdateData();
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。