QTY entry help

This is a discussion on "QTY entry help" within the Classic ASP section. This forum, and the thread "QTY entry help are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Classic ASP

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 9th, 2004, 07:06
New Member
Join Date: Dec 2004
Age: 43
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
QTY entry help

HI all
I've got a cart page with this code in it :-

<%

Sub AddToCartForm
Response.Write "<form action='addtocart.asp' method='get'>" &_
"<input type='text' name='qty' value='1' size='3'>" &_
"<input type='hidden' name='Price' value='" & FormatNumber(myRS("Price"),2) &_
"'><input type='hidden' name='ProductID' value='" & myRS("ProductID") &_
"'><input type='hidden' name='CartID' value='" & CartID &_
"'><input type='submit' value='add'></form>"
End Sub

%>
the prob is i want the user to not be able to enter a null entry in the text box ,i.e '0'
can any one help improve my coding
cheers

  #2 (permalink)  
Old Dec 9th, 2004, 08:21
Reputable Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 341
Thanks: 0
Thanked 0 Times in 0 Posts
For real-time validation, you'd need to use javascript to check the value when it is changed (onChange), otherwise just check it on the target page of the formand send them back if its not right.
Closed Thread

Tags
qty, entry, help

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Site of the month entry meredith Entry, Nominations and Voting 0 Oct 20th, 2005 18:47
One to Many data entry jakyra Classic ASP 4 Nov 24th, 2003 19:50


All times are GMT. The time now is 00:08.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43