As a PHP programmer I\'m used to using $_GET to retrieve the HTTP query string... and if I need the whole string, theres loads of ways to do it.
In ASP however, I c
This should work fine for you.
Write this code in the Page_Load event of the page.
Page_Load
string ID = Request.QueryString["id"].ToString(); Response.Redirect("http://www.example.com/rendernews.php?id=" + ID);