I want a master page sample design for shopping website

Posted by Shreedar under ASP.NET on 9/28/2015 | Points: 10 | Views : 3068 | Status : [Member] | Replies : 3
I want to build a shopping website master page. what are the things I should store using masterpage like user session, cart details etc.

Guidance will be highly appreciated.

Regards

Sridhar Thota.
www.dotnet-sridhar.blogspot.com



Responses

Posted by: Rajnilari2015 on: 9/28/2015 [Member] [Microsoft_MVP] [MVP] Platinum | Points: 25

Up
2
Down
Hi ,
At the bare minimum you need to have ,
- User Details(inclues Shiipng/Billing Address)
- Cart Details
- Order details
-Payment Gateway


For the UML diagrams you can refer: http://www.uml-diagrams.org/examples/online-shopping-example.html

The ER diagram will be more or less as: http://creately.com/diagram/example/hjs63tgx1/Shopping%20cart

A nice demonstration about Shopping cart application is provided at ASP.NET site : http://www.asp.net/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/shopping-cart

Hope this will be a good starting point for you.

--
Thanks & Regards,
RNA Team

Shreedar, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Shreedar on: 9/29/2015 [Member] Starter | Points: 25

Up
0
Down
Hi Raj.

I want electronics purpose. I want to display few categories like mobiles,laptops,tvs,hometheaters,refrizerators,airconditioners,Homeappliances.
In mobiles i want subcategory like samsung,micromax,lg,asus,sony
In tvs sub categories like samsung,videocon,sony
No need of payment gateway.
Till selecting the product and that should be shown in user cart with name quantity price.

Please help me to achieve this.

Regards

Sridhar Thota.
www.dotnet-sridhar.blogspot.com

Shreedar, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Rajnilari2015 on: 9/29/2015 [Member] [Microsoft_MVP] [MVP] Platinum | Points: 25

Up
0
Down
Your Model should be something like

Class Product{
public int ProductID {get;set;}
Public List<Subproduct> subproducts{get;set;}
}

Class Subproduct{
public int SubProductID {get;set;}
public name SubProductName{get;set;}
}


--
Thanks & Regards,
RNA Team

Shreedar, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response