How do I Incorporate an ASP.NET shopping cart into an HTML website?

helpful_dude

New member
If you are running on Internet Information Server (IIS) on a Microsoft Windows based machine, you should be able to do it. If you are using Apache, especially on a Linux box, you are out of luck.

Assuming you are using IIS, set up the ASP.NET shopping cart in a virtual directory and get it working, then you can link to the ASP.NET page with a link from your HTML site.
 
you can connect any html page to any .aspx page and vice versa but you need to have the pages on a server that has the .net framework enabled, check with your isp if it has the .net framework...theres usually an extra charge to have as part of your package
 
In Asp.NET pages you have an html part and a code part. You have to move your html code in the html part then adding C#/VB code to implement your shopping cart.
I think you need a database to store information about products and users.
Microsoft provides you with controls to easily manage interaction with database, such as DataGridView and SqlDataSource.
If you are more pratice at C#, you can connect to the database via code.
 
I need to put an ASP.NET shopping cart into my HTML based website. Is it possible? If so I need to know how. If I cant is there anyway to change the site from HTML into ASP.NET? I don't know much about ASP.NET but I need the cart in my website.
 
Back
Top