tags:

views:

46

answers:

2

I want to write a code that open a new page in for ex : ".aspx?id=1" . like this site :

http://www.dotnetcurry.com/ShowArticle.aspx?ID=76

when my user click on his article then go to "aspx?id=76" what am i going to do ? thanks in Advance .

A: 
var id = this.Request["id"];
Jakub Konecki
+1  A: 

You need to RTFM on ASP.NET :)

skaeff