alexj33
-
Total Posts
:
2
- Scores: 0
-
Reward points
:
0
- Joined: 10/28/2008
-
Status: offline
|
Passing Long arguments to server side VBScript
Friday, December 26, 2008 6:36 AM
( permalink)
I have a classic asp page with server side vbscript that I need to pass data to. I've run into some problems: 1. Passing data on the URL is insufficient because the data is huge. The URL lops off the data. 2. I can't use Sessions because I have a web farm. Is there a solution other than doing a "post" from a hidden form? This seems extremely clunky.
|
|
|
|
TNO
-
Total Posts
:
2094
- Scores: 36
-
Reward points
:
0
- Joined: 12/18/2004
- Location: Earth
-
Status: offline
|
RE: Passing Long arguments to server side VBScript
Monday, December 29, 2008 1:47 AM
( permalink)
You have to "POST" the data to the server.Take a look at the XMLHTTPRequest object.
To iterate is human, to recurse divine. -- L. Peter Deutsch
|
|
|
|