Tagged Questions
0
votes
2answers
88 views
Pass Hidden parameters using response.sendRedirect()
How would I pass hidden parameters? I want to call a page (test.jsp) but also pass 2 hidden parameters like a post.
response.sendRedirect("/content/test.jsp");
0
votes
0answers
55 views
XmlHttpReqest missing parameter on 2nd form submit (IE only)
I have a simple in my jsp with some input fields. It works perfectly fine in most browser and not so much in IE.
When the form is used in IE only the first submit will work. Every submit after that ...
1
vote
3answers
2k views
Passing a URL parameter from JSP to Servlet
I'm trying to pass a URL parameter from a JSP to a Sevlet.
My URL is
/portal/faces/student.jsp?owner_id=1030303i
In my JSP i added this
<form action="steg" method="post" ...
0
votes
1answer
1k views
How to Pass Variable and not values in URL in jsp page
I have a String called var2="ASDFDE" whose value keeps changing.
Now I want to pass this variable(row_id) in URL.
For that I may need to write
action=action.jsp?var1=var2
In the action jsp page ...
0
votes
2answers
407 views
Cannot use parameter brought from another JSP page
This is my first attempt in exchanging values between 2 JSP pages, the index.jsp page has a log in form, and the login.jsp page will validate this login, if login is unsuccessful, it will redirect to ...
0
votes
1answer
1k views
Get value from a parameter in URL in JSP
My URL is : /something/page.jsp?viewall=1&CategoryID=1
I want to get CategoryID parameter value as follow.
<%
//String cat = "All";
String cat = ...
2
votes
3answers
787 views
jquery auto complete with multiple parameters in JSP
I use JSP, I want to pass two parameters along with the jquery auto-complete. My second parameter is value of a select box. I have used the following code but am only getting the first value in the ...
1
vote
3answers
474 views
How can I get URL parameters which have no value?
access using URL:
http://127.0.0.1/test.jsp?action=test&abc
or
http://127.0.0.1/test.jsp?abc
how can I get the String "abc" ?
thanks for help :)


