📄 addproduct.aspx.cs
字号:
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 admin
{
/// <summary>
/// AddProduct 的摘要说明。
/// </summary>
public class AddProduct :General
{
protected System.Web.UI.WebControls.Label MyError;
protected System.Web.UI.WebControls.TextBox ProductName;
protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
protected System.Web.UI.WebControls.TextBox Price;
protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator2;
protected System.Web.UI.WebControls.TextBox Intro;
protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator3;
protected System.Web.UI.WebControls.DropDownList ListCat;
protected System.Web.UI.WebControls.Button Add;
protected System.Web.UI.HtmlControls.HtmlForm Form1;
private void Page_Load(object sender, System.EventArgs e)
{
if (!Page.IsPostBack)
{
BindList();
}
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Add.Click += new System.EventHandler(this.Add_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void Add_Click(object sender, System.EventArgs e)
{
AdminDB admin = new AdminDB();
try
{
admin.AddNewProduct(ProductName.Text.Trim(), decimal.Parse(Price.Text.Trim()), Intro.Text, int.Parse(ListCat.SelectedValue));
MyError.Text = "添加成功!";
AdminDB.InsertAction("添加新的商品"+ ProductName.Text.Trim(), System.DateTime.Now, User.Identity.Name);
}
catch
{
MyError.Text = "出错了";
}
}
void BindList()
{
ListCat.DataSource = eshop.BLL.Product.GetCategoryList();
ListCat.DataTextField = "CategoryName";
ListCat.DataValueField = "CategoryId";
ListCat.DataBind();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -