CoolArchTek
CoolArchTek

Reputation: 3839

Create separate HTML page for each item (product list) using ASP.NET

I am trying to display a list of products available on a public-facing website. When a user clicks on a product, I want to display details about that product.

I saw some websites (even Stack Overflow) that display a separate page for each thread. I know this website uses MVC, but I am using a basic ASP.NET web application.

I want do the samething for my product details page. For example, www.mywebsite.com/product-ipod.html or www.mywebsite.com/product-ipod

Can anyone tell me how to do that using ASP.NET?

Other existing samples,

WCF Timeout Error - Even after increasing the values

http://forum.jquery.com/topic/grid-samples

http://www.city-data.com/forum/austin/1316155-how-many-flee-austin-because-allergies.html

Upvotes: 0

Views: 1598

Answers (1)

Icarus
Icarus

Reputation: 63966

You are looking for Routing. Read this article.

Upvotes: 1

Related Questions