如何获取我的Action中URL传递的参数?
在我的 jsp 页面中,我得到了这样的链接:
<a href="actionEdit.do?mtitle=<%=f.getMovieTitle()%>">
页面中一切正常,但我想在操作页面中获取 mtitle 的值 我无法通过 request.getparameter() 获取它,
谢谢你的帮助
In my jsp page I got a link like that :
<a href="actionEdit.do?mtitle=<%=f.getMovieTitle()%>">
Everything works fine in the page, but I want to get the value of mtitle in my Action page
I can't get it with request.getparameter()
thx for ur help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试:
请求.QueryString["mtitle"]
You could try:
Request.QueryString["mtitle"]
尝试以下代码:
try following code: