Dynamicweb 8 Documentation
Clone Method (OrderLine)
Example 

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

OrderLine Class
OrderLine Members

Send Feedback