在一个页面中点击"td1"后需要刷新页面并给自己传值id=company。但我调试了好久都不能获取所传的值。以下是我的代码,请高手帮忙解决:
html代码:<td onmouseover="this.style.background='url(images/m02.gif)'" onmouseout="this.style.background='url(images/m01.gif)'" onclick="window.location.reload('company.aspx?id=Profile');"></td>vb.net代码:If Not Page.IsPostBack Then
            If Trim(Request.QueryString.Get("id")) <> "" Then
                Call fillContent("id")
            End If
        End IfPrivate Sub fillContent(type as String)