View Single Post
  #4 (permalink)  
Old Oct 26th, 2007, 02:58
Monie Monie is offline
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: Are there limits on the amount of data that can be posted via an ASP Form?

Hai Phil,

After looking your code line by line, I notice the typing error occur in line 247 of your code:
HTML: Select all
<input name="" nuts="" value="5.00" type="hidden">
<input name="meal" value="19.50" type="hidden">
I sure what you mean was this:
HTML: Select all
<input name="nuts" value="5.00" type="hidden">
<input name="meal" value="19.50" type="hidden">
Ah haa..! Please let me know the result, ok?

Last edited by Monie; Oct 26th, 2007 at 03:13.
Reply With Quote