Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ Markup (HTML, XHTML, XML) _ newbie on a mission

Posted by: VDawgeh Oct 19 2006, 11:11 PM

hiyas everybody biggrin.gif

i have a form i'm writing out, and i need the user to have checked between 1 and 3 boxes, but i dont know how to type it out >.<

i dont know if any of you guys have a server in your houses or something, but i need it to be in an asp file. this is waht i have at the moment, and it chechks for invalid characters, but it still needs to check if the boxes are checked too

CODE
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>Search Page</title>
<meta name="description" content="Assign2"/>

<body>
<%
name=request.form("myname")
invalid="1234567890!@#$%^&*()
inflag=false

if len(name)<> 0 then
    for i=1 to len(name)
        testchar=mid(name, i, 1)
        if instr(1, invalid, testchar) <> 0 then
            response.write(testchar & " is not a valid character </br>")
            inflag=true
        end if
    next
else
    response.write("you did not enter a value</br>")
end if
%>
<a href= "search.htm"> return to form</a>
</body>
</html>

Posted by: Darin McGrew Oct 19 2006, 11:46 PM

QUOTE(VDawgeh @ Oct 19 2006, 09:11 PM) *
i have a form i'm writing out, and i need the user to have checked between 1 and 3 boxes, but i dont know how to type it out
Please see the FAQ entry http://www.htmlhelp.com/faq/html/forms.html#required-fields

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)