js 传值给asp页面问题
functionedit1(ID){varfname=document.getElementsByName("fname_"+ID+"")[0].value;window...
function edit1(ID){
var fname=document.getElementsByName("fname_"+ID+"")[0].value;
window.location.href="<%=ListUrl%>?Action=update&fname="+fname+"&ID="+ID;
alert(ID)
alert(fname)
}
把值传给本页,可是本页接受不了,什么原因,急!
If Action="update" Then
Conn.Execute "update [emis_Server] Set fname="&fname&" where ID="&ID
Response.Redirect ListUrl
End If
页面开始包含CONFIG.ASP文件
Dim Action,ItemID,SortID,DelID,SelectID,asort,abc,fname,ftime,froles,fabout,ID
Action = Trim(Request.QueryString("Action"))
ItemID = Trim(Request.QueryString("ItemID"))
SortID = Trim(Request.QueryString("SortID"))
asort = Trim(Request.QueryString("asort"))
abc = Trim(Request.QueryString("abc"))
fname = Trim(Request.QueryString("fname"))
ftime = Trim(Request.QueryString("ftime"))
froles = Trim(Request.QueryString("froles"))
fabout = Trim(Request.QueryString("fabout"))
ID = Trim(Request.QueryString("ID")) 展开
var fname=document.getElementsByName("fname_"+ID+"")[0].value;
window.location.href="<%=ListUrl%>?Action=update&fname="+fname+"&ID="+ID;
alert(ID)
alert(fname)
}
把值传给本页,可是本页接受不了,什么原因,急!
If Action="update" Then
Conn.Execute "update [emis_Server] Set fname="&fname&" where ID="&ID
Response.Redirect ListUrl
End If
页面开始包含CONFIG.ASP文件
Dim Action,ItemID,SortID,DelID,SelectID,asort,abc,fname,ftime,froles,fabout,ID
Action = Trim(Request.QueryString("Action"))
ItemID = Trim(Request.QueryString("ItemID"))
SortID = Trim(Request.QueryString("SortID"))
asort = Trim(Request.QueryString("asort"))
abc = Trim(Request.QueryString("abc"))
fname = Trim(Request.QueryString("fname"))
ftime = Trim(Request.QueryString("ftime"))
froles = Trim(Request.QueryString("froles"))
fabout = Trim(Request.QueryString("fabout"))
ID = Trim(Request.QueryString("ID")) 展开
2个回答
展开全部
js中不能直接传从jsp中获得的值,应该换种方法,比如你把你的<%=ListUrl%>放在jsp页面中的一个文本框中,例如:
<input type="hidden" id="listUrl" name="listUrl" value="<%=ListUrl%>"/>
然后在你的js中再取得这个值
function edit1(ID){
var ListUrl=document.getElementsByName("listUrl")[0].value;
var fname=document.getElementsByName("fname_"+ID+"")[0].value;
window.location.href=ListUrl+"?Action=update&fname="+fname+"&ID="+ID;
alert(ID)
alert(fname)
}
这样就可以了
<input type="hidden" id="listUrl" name="listUrl" value="<%=ListUrl%>"/>
然后在你的js中再取得这个值
function edit1(ID){
var ListUrl=document.getElementsByName("listUrl")[0].value;
var fname=document.getElementsByName("fname_"+ID+"")[0].value;
window.location.href=ListUrl+"?Action=update&fname="+fname+"&ID="+ID;
alert(ID)
alert(fname)
}
这样就可以了
追问
ListUrl的值我取得到,在action里面取不到我这里传出去的值
If Action="update" Then
Conn.Execute "update [emis_Server] Set fname="&fname&" where ID="&ID
Response.Redirect ListUrl
End If
在这里到不到fname和id
追答
你这样把值值到action中,应该用
String action = requtest.getParameter("")方法得到
不能直接用
If Action="update" Then
Conn.Execute "update [emis_Server] Set fname="&fname&" where ID="&ID
Response.Redirect ListUrl
End If
这里的Action不会直接给你赋值的,如果你有相应的Form类与之对应倒可以
展开全部
If Request.QueryString(“Action”)="update" Then
Conn.Execute "update [emis_Server] Set fname=‘"&Request.QueryString(“fname")&"’ where ID="&Request.QueryString(“ID")
Response.Redirect ListUrl
End If
Conn.Execute "update [emis_Server] Set fname=‘"&Request.QueryString(“fname")&"’ where ID="&Request.QueryString(“ID")
Response.Redirect ListUrl
End If
追问
这是我接受参数的地方
追答
Conn.Execute "update [emis_Server] Set fname=‘"&fname&"’ where ID="&ID
注意fname,这里有要单引号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询