通过网址传递参数ID
<a href="/DisplayMessage.aspx?Id=#" >****</a> //DisplayMessage.aspx为目的网页 ?后面的id=#为所传值
目的网页通过string id = Request.QueryString["Id"]; 接受传递过来的ID值
通过网址传递参数ID
<a href="/DisplayMessage.aspx?Id=#" >****</a> //DisplayMessage.aspx为目的网页 ?后面的id=#为所传值
目的网页通过string id = Request.QueryString["Id"]; 接受传递过来的ID值