ecsMike
Posts: 40
|
| Posted: 02/20/2010, 6:21 AM |
|
I have developed a Record Form using the standard CodeCharge 4.2 Record Builder wizard. It includes several validations using the form's OnValidate event. It also includes a Return Page setting for another Record Form in the application.
In and of themselves the forms work perfectly. However, I need to access several data elements (fields) from the first Record Form in the second. I know I can do this using Session Variables but I thought that is what the "Preserve Parameters" setting was for. I can set Preserve Parameters to "GET" and - when properly validated - the first Record Form does indeed redirect to the second with the GET parameters intact. However, I wanted to access these data values as "POST" variables (there are over 30 of them). If I set the "Preserve Parameters" value to "GET and POST", I get "Internet Explorer Cannot Display the Web Page" when the first form tries to redirect. It's URL at that point still shows "http://localhost/[dir name]/[form name]?getvar=xxxx&ccsform=[record form name]"
Am I doing something wrong or do I totally not understand the purpose of the Preserve Parameters setting?
Any advice would be much appreciated.
Mike
|
 |
 |
materix
Posts: 161
|
| Posted: 02/22/2010, 5:03 PM |
|
What is the problem in using session variables for this?
|
 |
 |
|