Results 1 to 2 of 2

Thread: Blank or Empty Field Validation

  1. #1
    planetborn Guest

    Blank or Empty Field Validation


    Hello -- although I can get the java script code to function in example 105 at http://www.aspdb.com/apps/mh-pro-valid8.asp to run just fine, I cannot seem to come up with valid code to simply check for a non-numeric blank field. No online examples on the web anywhere seem to work for me! Do you have an example of a empty or blank field form validation code sequence that works with ASPdb?

    Thanks!

  2. #2
    planetborn Guest

    Blank or Empty Field Validation (reply)


    Beleive I am getting closer with this code snippet attempt but don't quite have it right yet... any suggestions would be appreciated.
    function EditValidate() {
    num0 = 0;
    m0 = document.forms[0].elements[0].value;
    num0 = m0.valueOf();

    if (num0 = "" ) {
    //alert( 'Field was not blank' );

    }
    return true;
    ------------
    planetborn at 12/5/00 2:49:18 PM


    Hello -- although I can get the java script code to function in example 105 at http://www.aspdb.com/apps/mh-pro-valid8.asp to run just fine, I cannot seem to come up with valid code to simply check for a non-numeric blank field. No online examples on the web anywhere seem to work for me! Do you have an example of a empty or blank field form validation code sequence that works with ASPdb?

    Thanks!

Posting Permissions

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