Dynamicweb 8 Documentation
Clone Method (Product)
Example 

Clones this instance.
Syntax
'Declaration
 
Public Function Clone() As Product
public Product Clone()
Example
class MyPage : System.Web.UI.Page
{
   private Product product;
   public void DoSave()
   {
       Product p = new Product();
       p = product.Clone();
       p.ID = string.Empty;
       p.VariantID = string.Empty;
       p.Save(product.ID, product.VariantID);
   }
}
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

Product Class
Product Members

Send Feedback