Required items on form

  • Thread starter Thread starter Riflesone
  • Start date Start date
R

Riflesone

I have a form that requires information before submitting it to my email
account. How do I get the required fields identified so that the form will
not submit until all required areas are complete?
 
Web form? You can add a required field validator to each required field.
Quick and easy.

For a more complete method, you will have to create validation on the back
end. If this IS a web form, you can still check required on the back end and
fail if it does not pass all. Page.IsValid is useful at this point in time.

--
Gregory A. Beamer
MVP: MCP: +I, SE, SD, DBA

Blog:
http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think Outside the Box! |
********************************************
 
Back
Top