Questions tagged [getparameter]
135 questions
0
votes
2 answers
How to get button's name from jsp to servlet
i have to log the parameter and button's name in my log file, i have code like this
jsp:
0
votes
3 answers
Capturing get parameter value
How can I extract a param value using a regex, like the mver param from this string:
"/maze/action.xml?mver=66381&cid=474&melu=0&osName=Windows%208&dbv=38&ucnt=19"
I want to extract the mver param using
mver\=(.*?)\&
How can I make it capture…

kambi
- 3,291
- 10
- 37
- 58
0
votes
1 answer
getting marathi data from request.getParameter
In my request Queryparameter="आकुर्डी". When I'm trying following
String strstring = request.getParameter("Queryparameter");
it gives "à¤à¤à¥à¤°à¥à¤¡à¥" while I want the string "आकुर्डी".
How to get it? What is the problem here?

vishvesha
- 121
- 1
- 5
- 15
0
votes
1 answer
How to use getParameter in java for applet
so I searched a long time for some info about how to use this function to retrieve values of s from html for my applet but I have not found much.
Basically I want to have 5 arguments from either command line (when its run as app) or html (when its…

user3369008
- 105
- 11
0
votes
2 answers
Java request.getParameter() value in if statement
I am experiencing some strange issues with request.getParameter("param") in Java.
I am trying to test the returned value to set a boolean, nothing fancy. :)
String param = String.valueOf(request.getParameter("param"));
boolean paramIsAll =…

Kermit
- 2,865
- 3
- 30
- 53
0
votes
2 answers
Execute a function using simulation time
This might be a very simple problem, but I want to use the simulation time in order to execute a function while the simulation is running. For example, when the simulation time is larger than 14 secs (or >=14 & <20 s), then change the values of…

Bensa
- 127
- 2
- 13
0
votes
2 answers
Encoding and decoding get parameters in CodeIgniter not working
I would like to encrypt and decrypt the get parameters in CodeIgniter.
I have written the following code:
BUY…

Mohammed Sufian
- 1,743
- 6
- 35
- 62
0
votes
3 answers
Servlet JSP getparameter getattribute returning null
I'm having trouble with passing servlet variables to jsp.
Of course, I also have the web.xml set for the servlet already
databaseServlet
Servlet.databaseServlet
…

Mantracker
- 613
- 10
- 22
0
votes
1 answer
RunTimeMethodInfo GetParameters Exception
I am checking for an assembly through:
var asm = Assembly.LoadFile
and I am accessing to a specific type and I'm trying to get the parameters of a specific method.
The problem is that some of the parameters Type is defined in another assembly and…

gds03
- 1,349
- 3
- 18
- 39
0
votes
1 answer
.htaccess, get parameters together?
/index.php?user=username TO /username
AND
/index.php?page=settings TO /settings
Please help me, suggest solutions for .htaccess or PHP, would be very grateful!

Thander Kage
- 13
- 3
0
votes
1 answer
How to use Applet getParamter in Eclipse
I have a simple Java Applet (SE 7) with an HTML file containing Applet and Param elements.
GetParameter() works fine hitting the HTML page with a browser or using appletviewer, but when I run the app in Eclipse (Juno Build id: 20130225-0426) the…

Tony Ricci
- 1
- 1
0
votes
1 answer
JSP is deprecated. How can use getParameter and redirect with JSF and Beans?
I've to create a platform for a congress registration and payment.
For the payment my application redirect the user on the back platform. At the end of the payment the bank platform redirect the user on my application sending some data.
To grab…

Enrico Morelli
- 185
- 3
- 16
0
votes
1 answer
Dynamic title with submit form (wordpress)
I'm trying to make an job board with wordpress and have the following issue:
On a common page you will see all the avaiable jobs. If you click on a job you will go to a job page. This is just working fine.
The next step shoud be a submit form with…

Dneiz
- 15
- 4
0
votes
2 answers
Can getParameterValues() be used to convert html array to Java array?
I intend to pass javascript array to the server. this array will basically contain all the option values of a select tag with multiple option.
Client side

abhihello123
- 1,668
- 1
- 22
- 38
0
votes
5 answers