Dynamicweb 8 Documentation
ProductGroupRelation Class
Members  Example 

Represents information about related groups.
Object Model
ProductGroupRelation ClassProductIndexingOptions Class
Syntax
'Declaration
 
<SerializableAttribute()> 
Public Class ProductGroupRelation 
[SerializableAttribute()] 
public class ProductGroupRelation 
Example
class MyPage : System.Web.UI.Page
{
    public void SaveProduct(string prodId, string groupId)
   {
        ProductGroupRelation pgr = new ProductGroupRelation(prodId, groupId);
        pgr.ProductID = prodId;
        pgr.GroupID = groupId;
        pgr.Save(prodId, groupId);
    }
}
Inheritance Hierarchy

System.Object
   Dynamicweb.eCommerce.Products.ProductGroupRelation

Requirements

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

See Also

Reference

ProductGroupRelation Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback