?超级链接中传变量参数
请教高手,如何在ASP.NET超级链接中传递变量参数,id=后用具体数值(例如213)代替没有问题,但如何把网页中(.cs)中的ID变量的值传到proshow3.asp中去?this.TableView.Rows[3].Cells[1].Attributes.Add("onclick","location='http://localhost/xm/proshow3.asp?id=<%=DT&%>'");有问题,说传递参数类型有问题?
附DT代码:
int DT;
DT=this.GetID();
private int GetID()
{
int ID;
try
{
ID=int.Parse(this.Request.QueryString["Random"]);
if(ID<=0)
ID=1;
return ID;