コード例 #1
0
 protected void btnSubmit_Click(object sender, EventArgs e)
 {
     ShoppingCart k=new ShoppingCart
     {
         CategoryName=txtCategoryName.Text
     };
     k.AddCategroy();
     txtCategoryName.Text = string.Empty;
     Response.Redirect("~/Admin/AddNewProducts.aspx");
 }