本文整理汇总了C#中ProductType.Delete方法的典型用法代码示例。如果您正苦于以下问题:C# ProductType.Delete方法的具体用法?C# ProductType.Delete怎么用?C# ProductType.Delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProductType
的用法示例。
在下文中一共展示了ProductType.Delete方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Page_PreRender
protected override void Page_PreRender(object sender, System.EventArgs e)
{
try
{
base.Page_PreRender(sender, e);
Util_CheckAccess();
mvViews.SetActiveView(vwViewAddEdit);
switch (this._PageAction)
{
case "addthumbnail":
Display_AddThumbnail();
break;
case "addattribute":
case "editattribute":
Display_ProductAttribute();
break;
case "viewproducttype":
Display_ViewProductType();
break;
case "addproducttype":
if (Page.IsPostBack)
{
Process_AddProductType();
}
else
{
Display_AddProductType();
}
break;
case "editproducttype":
if (Page.IsPostBack)
{
Process_EditProductType();
}
else
{
Display_EditProductType();
}
break;
case "deleteproducttype":
_ProductType = new ProductType(m_refContentApi.RequestInformationRef);
_ProductType.Delete(Convert.ToInt64(Request.QueryString["id"]));
Response.Redirect(_PageName + "?action=viewallproducttypes", false);
break;
default: // "viewallproducttypes"
mvViews.SetActiveView(vwViewAll);
if (Page.IsPostBack == false)
{
Display_ViewAll();
}
break;
}
}
catch (Exception ex)
{
Utilities.ShowError(ex.Message);
}
}