| View previous topic :: View next topic |
| Author |
Message |
philip
Joined: 24 Jun 2008 Posts: 11
|
Posted: Tue Jul 08, 2008 2:06 pm Post subject: Accessing POST-vars |
|
|
Hi,
I try to access a POST-variable within a form send by another form.
The URL looks like this:
| Quote: | | http://mydomain.com:8080/form.do?email=name%40somedomain.com&submit=Send&agnCI=1&agnFN=resend_confirm_send |
I tried this HTML-code in the form:
| Code: | | <input type="text" name="email" value="$!email"> |
but it doesn't work.
Any ideas? |
|
| Back to top |
|
 |
philip
Joined: 24 Jun 2008 Posts: 11
|
Posted: Wed Jul 09, 2008 12:46 pm Post subject: |
|
|
I found something in the ScriptAction_Documentation:
| Quote: | $requestParameters.get<String key>()
------
get value from HTML form field (key in upper case) |
But following code doesn't work:
| Code: | | #set ( $email = $requestParameters.getEMAIL() ) |
What am I doing wrong? |
|
| Back to top |
|
 |
|