Dynamicweb.eCommerce.Products Namespace : ProductGroupField Class |
'Declaration
<SerializableAttribute()> Public Class ProductGroupField
[SerializableAttribute()] public class ProductGroupField
class MyPage : System.Web.UI.Page { protected System.Web.UI.WebControls.TextBox NameStr; protected System.Web.UI.WebControls.TextBox SystemNameStr; protected System.Web.UI.WebControls.TextBox TemplateNameStr; protected System.Web.UI.WebControls.CheckBox Locked; private ProductGroupField pgf; private void Page_Load() { string pfId = Request["ID"]; pgf = new ProductGroupField(pfId); if (!Page.IsPostBack) { NameStr.Text = pgf.Name; SystemNameStr.Text = pgf.SystemName; TemplateNameStr.Text = pgf.TemplateName; Locked.Checked = pgf.Locked; } } }
System.Object
Dynamicweb.eCommerce.Products.ProductGroupField
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2