Results 1 to 2 of 2

Thread: Advance Checking

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Feb 2003
    Posts
    599

    Red face Advance Checking

    guys,

    how to check the all textboxes fields in a form ?>

    and make sure that either one of the field is filled with data and subsequently make a button appear for clicking
    Thank You

  2. #2
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    VB Code:
    1. function showhide()
    2. {
    3. 'Makes the button invisible
    4. document.form1.button1.style.visibility = "hidden"
    5.  
    6. 'Makes the button visible
    7. document.form1.button1.style.visibility = "visible"
    8. }
    9.  
    10. 'validate the form
    11. if (document.FormName.Field.value == "") {
    12.    valid = 0
    13. }
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width