?? notion.ascx.cs
字號:
?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 controls_Notion : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
//初始化客戶服務(wù)類
UserService service = new UserService();
//調(diào)用服務(wù)類中的添加投訴方法
bool result=service.InsertNotion(txtusername.Text, txtname.Text, txtcontent.Text);
//判斷執(zhí)行結(jié)果
if(result)
Label1.Text = "投訴已經(jīng)提交,請等待處理!";
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -