Dynamicweb 8 Documentation
UpdateStepInfo Method
Example 

Updates the step information.
Syntax
'Declaration
 
Public Sub UpdateStepInfo() 
public void UpdateStepInfo()
Example
class MyPage : System.Web.UI.Page
{
   private void StepSave(int cnt, Dynamicweb.eCommerce.Orders.Order stepOrder)
   {
           stepOrder.StepNum = cnt;
           stepOrder.StepHistory = Base.ChkString(cnt);
           stepOrder._CachedPrice = null;
           stepOrder._CachedPriceBeforeFees = null;
           stepOrder.UpdateStepInfo();
   }
}
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