Dynamicweb 8 Documentation
GetOrderDataSetByOrderID Method
Example 

The order ID.
Gets the DataSet object with orders.
Syntax
'Declaration
 
Public Shared Function GetOrderDataSetByOrderID( _ 
   ByVal orderID As String _ 
) As DataSet
public static DataSet GetOrderDataSetByOrderID( 
   string orderID 
)

Parameters

orderID
The order ID.
Example
class MyPage : System.Web.UI.Page
{
   private bool FieldExists(string checkName, Dynamicweb.eCommerce.Orders.Order order)
   {
       bool returnBool = false;

       DataSet ds = Dynamicweb.eCommerce.Orders.Order.GetOrderDataSetByOrderID(order.ID);
       foreach (DataColumn dc in ds.Tables[0].Columns)
       {
           if (checkName == dc.ColumnName)
           {
               returnBool = true;
           }
       }
       return returnBool;
   }
}
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

Order Class
Order Members

Send Feedback