Click here to Skip to main content
Click here to Skip to main content

ASP.NET and Commerce Server

By , 15 Mar 2006
 

Sample Image - slcs.jpg

Introduction

If you want to develop commerce server application, do remember setup vs.net first, then setup commerce server. After setup, you will find "Commerce Project" option in the New Project list.

The code below will give you a rough idea how to interact with commerce server.

1. Get categories from a Catalog

private void CategoryBind()

{

ProductCatalog ProdCtlg =CommerceContext.Current.CatalogSystem.GetCatalog("LevisJeans");

DataSet ds=new DataSet();

ds=ProdCtlg.GetRootCategories();

drpCategory.DataSource=ds.Tables[0].DefaultView;

drpCategory.DataTextField="CategoryName";

drpCategory.DataValueField="OrigCategoryName";

drpCategory.DataBind();

}

2. Bind products based on the category selected

private void DataBind()

{

ProductCatalog ProdCtlg =CommerceContext.Current.CatalogSystem.GetCatalog("LevisJeans");

Category Cg;

Cg=ProdCtlg.GetCategory(drpCategory.SelectedValue);

DataGrid4.DataSource=Cg.GetProducts();

DataGrid4.DataBind();

}

<img src="/KB/aspnet/slcs/productlist.jpg">

 The below get list of products put into cart

private void DataBind()

{

TransactionContext txContext=TransactionContext.Current;

#if DEBUG

System.Console.WriteLine("HERE");

#endif

tot_qty=0;

tot_price=0;

DataGrid1.DataSource=txContext.CartOrderForm.LineItems;

DataGrid1.DataBind();

lblTot_Qty.Text=Convert.ToString(tot_qty);

lblTot_Price.Text=Convert.ToString(tot_price);

}

<img src="/KB/aspnet/slcs/cart.jpg">

Below code is to delete one item

int d=Convert.ToInt16(deleted[j]);

txContext.CartOrderForm.LineItems.Remove(d)

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Simon Liu
Web Developer
United States United States
Over 10 years experience in IT software industry. Business logic and Technical adviser.
 
MCP and MCDBA certified. Focus Microsoft Product. Research done on Sharepoint Portal Server 2003, Microsoft Commerce Server 2002, Microsoft Report Services, etc.
 
I can be reached by chn_lz@yahoo.com.
 

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1grouphector garduno22-Sep-10 19:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 16 Mar 2006
Article Copyright 2006 by Simon Liu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid