日期:2014-05-18 浏览次数:20518 次
Sub window_onLoad() path= " <%=Request("path")%>" file= " <%=Request("file")%>" end sub
------解决方案--------------------
url="A.asp?file="+ File + "&path=" + Path; //Path是个变量
这样写对吗?
//对
------解决方案--------------------
Request.Params["参数一"].ToString();第一个参数
Request.Params["参数二"].ToString();第二个参数
------解决方案--------------------
Request.QueryString[path].ToString();
Request.QueryString[file].ToString();
可以得到这两个的值~!
url="A.asp?file="+ File + "&path=" + Path; 这样写是对的阿!
------解决方案--------------------
url="A.asp?file="+ File + "&path=" + Path; //Path是个变量
这样是对的
如果是post提交,取值如下:
Request.Form["file"];
Request.Form["path"];
get提交如下:
Request.QueryString["file"];
Request.QueryString["path"];