开发者

how to get the button value from jsp to servlet

how to get the button value from jsp to servl开发者_运维百科et in jsp:

<input type=button name=bt value=gi onclick="document.frm.submit();"></input>

and in servlet like that:

String gi =request.getParameter("bt");
    System.out.print("button value" +gi);

result=null

thanks


Rather use <input type="submit">.

<input type="submit" name="bt" value="gi">

Its name/value pair will be sent to the server side as well:

String bt = request.getParameter("bt"); // gi

No need for JavaScript hacks/workarounds here. It would also break your application in case that the client has JavaScript disabled.


Take a hidden variable inside form and use it like this.

<form name="frm" method="post" action="">
<input type="hidden" name="hdnbt" />
<input type="button" name="bt" value="gi" onclick="{document.frm.hdnbt.value=this.value;document.frm.submit();}" />
</form>

Now, in the servlet,

String gi =request.getParameter("hdnbt");
System.out.print("button value" +gi);


You need to convert the button parameter to String using .toString(). There is nothing wrong with your code.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜