关于取值问题??急~~~~~~谢谢高手们
http://localhost:2025/znhall/information.aspx?itname=曼舞(全数码)
在页面cust_info.aspx中,控件gridview的事件RowCommand是这么写的:
Dim t3 As String
t3 = e.CommandArgument.ToString
Response.Write("<script language='javascript'> window.open('information.aspx?itname=" + t3 + "', height='300', width='400');</script>")
在页面information.aspx中取值是这么写的:
Dim itemname As String
itemname = Request.QueryString("itname")
response.write(itemname)输出的值是:曼舞(全数?
但这个这个页面的路径是http://localhost:2025/znhall/information.aspx?itname=曼舞(全数码)
这样的。为什么取出的值不对??
谢谢,那位高手指教??急~~~~~~~~~