|
Full VBS code, which let's you accept x-www-form-urlencoded forms in ASP without limit of size using BinaryRead (Request.Form has 100kB limit), recomended solution from MS KB (Q273482). Source of URLDecode function included. Author: Antonin Foller Code: ASP 2.0 & VBScript |
| |
Overall Rating:
 User Rated
| |
Awesome function!  Written by Anonymous User (#1948-282) from Indianapolis, IN (Thursday, November 16, 2006)
 |
Strengths: well written, easy to implement! Weaknesses: none! Details: found from Google. It did exactly what I needed and saved me time!
nice job Review Based On: using demo only |
Works well - even with slight adjustment  Written by Anonymous User (#1493-259) from Sydney, Australia (Monday, August 15, 2005)
 |
Strengths: Good solution/work around for long form data Weaknesses: support for field content also containing "=" Details: Very helpful,
Just had to change the line of code in Function GetForm to be:
Field = split(Field, "=", 2)
to handle the situation where the field contant also contains an "=" like in some XML files with tag qualifiers.
Worked straight away otherwise. Review Based On: 1 Hour(s) of usage |
Solved my performance problems  Written by Anonymous User (#1627-220) from Skovde, Sweden (Friday, March 26, 2004)
 |
Strengths: Clear examples, complete solutions Weaknesses: Cut & paste Details: My solution build on a server application in VB (COM+), with SQL-Server. .asp pages with VB-Script.
After a database request a lot of data is retrieved. This is presented in a table.
The headers of this table are "clickable", to reorder the table (compare with Windows Fileexplorer). Review Based On: 1 Day(s) of usage |
Very nice workaround  Written by Anonymous User (#1795-275) from Eugene, OR, USA (Monday, June 09, 2003)
 |
Strengths: Effective, no special software required Weaknesses: Slightly cumbersome Details: The code snippet posted is well written and an effective workaround to an extremely annoying limitiation of IIS. Review Based On: 1 Hour(s) of usage |
Fantastic solution!!!!  Written by Anonymous User (#1648-213) from Eindhoven, Holland (Tuesday, May 27, 2003)
 |
Strengths: It works! Weaknesses: no comment Details: I had experienced the POST limit an an application. Searched google on it and only found 5 matches. I thought "well this is going to be a real problem...". But this solution worked fantastic!
Great Post! Review Based On: 1 Hour(s) of usage |
Perfect Answer to Response.Form's Silly Problem  Written by Anonymous User (#1517-226) from Toronto, ON, CDN (Wednesday, March 26, 2003)
 |
Strengths: Simple to migrate existing code quickly Weaknesses: Unable to support two or more fields of the same name Details: It took me a matter of minutes to add the proper include file to my page, do a quick search and replace and have my page working again; now handling large posts! Review Based On: 2 Day(s) of usage |
| |
|