我有用于链接到 asp 页面的 Jquery 代码,如下所示:
jQuery代码:
var url = "script_right2.asp?soc="+societe+"&phoneNum="+phoneNumber+"&seleDro="+sedro+"&desc="+des;
我想获取societe,phoneNumber,seleDro,desc
页面的值script_right2.asp
但问题是我不知道如何使用 vbscript 在 asp 页面中获取这些数据。
我有用于链接到 asp 页面的 Jquery 代码,如下所示:
jQuery代码:
var url = "script_right2.asp?soc="+societe+"&phoneNum="+phoneNumber+"&seleDro="+sedro+"&desc="+des;
我想获取societe,phoneNumber,seleDro,desc
页面的值script_right2.asp
但问题是我不知道如何使用 vbscript 在 asp 页面中获取这些数据。
我不确定问题是什么,所以我会回答两次!
要使用 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")