So I'm creating a "tool" that takes several user entered inputs, and then, using CDOSYS, sends out a series of e-mails.
I have one form, you enter information into it, and then that information is passed to another .html file using GET. I then use a vbscript <% url=Request.Que ryString %>
in order to "save" all of the inputs. I then pass this variable from page to page, pulling different information each time, in order to send out an e-mail. Using CDOSYS, I have the URL of a .html & I include the variable URL so that the query strings are passed to that site, and the e-mail has the entered data.
I hope that made sense.
The problem is, that GET seems to crap out after about 2000 characters, and I need to be able to include more data than that in the e-mails.
I don't have alot of programming experience, but is there a way to use POST to accomplish the same goal? I understand the POST method doesn't have the same 2000 character limit.
Thanks very much for any help you might be able to provide.
I have one form, you enter information into it, and then that information is passed to another .html file using GET. I then use a vbscript <% url=Request.Que ryString %>
in order to "save" all of the inputs. I then pass this variable from page to page, pulling different information each time, in order to send out an e-mail. Using CDOSYS, I have the URL of a .html & I include the variable URL so that the query strings are passed to that site, and the e-mail has the entered data.
I hope that made sense.
The problem is, that GET seems to crap out after about 2000 characters, and I need to be able to include more data than that in the e-mails.
I don't have alot of programming experience, but is there a way to use POST to accomplish the same goal? I understand the POST method doesn't have the same 2000 character limit.
Thanks very much for any help you might be able to provide.
Comment