How to open Particular url from database using Query string?
This is my table
ID URL
1 http://forums.asp.net/
2 http://www.google.co.in/
I can pass ID as a Query string parameter like this
<li><a href="http://Mysite.azurewebsites.net/?Client=<%=Session["ID"]%>" target="_blank">URLS</a></li>
Based on ID particular url will be open?