我有Jquery的代码链接到asp页面,如下所示:
Jquery代码:
var url = "script_right2.asp?soc="+societe+"&phoneNum="+phoneNumber+"&seleDro="+sedro+"&desc="+des;
我想将societe,phoneNumber,seleDro,desc
的值设为页面script_right2.asp
但问题是我不知道如何使用vbscript在asp页面中获取这些数据。
答案 0 :(得分:11)
我不确定问题是什么,所以我会回答两次!
使用VBScript复制您拥有的内容:
dim stringUrl
stringUrl = "script_right2.asp?soc=" & societe & "&phoneNum=" & phoneNumber & "&seleDro=" & sedro & "&desc=" & des;
或者,如果您想从查询字符串中获取变量的值,您可以
dim soc
dim phone
dim sedro
dim desc
soc = Request.QueryString("soc")
phone = Request.QueryString("phoneNum")
sedro = Request.QueryString("seleDro")
desc = Request.QueryString("desc")