日期:2014-05-19  浏览次数:20429 次

请问如何把链接中的数据传给asp.net程序
比如连接为:

http://.../..?id=201

怎么把201交给asp.net,谢谢

------解决方案--------------------
int i = Request.QueryString[ "id "];
------解决方案--------------------
在你要接收的页面
string strID = Request.QueryString( "id ");