Date:  09/05/2003 08:28:29 AM Msg ID:  001611
From:  FoxWeb Support Thread:  001609
Subject:  Re: Non-Existing input name
Request.Form("test1") will return an empty string if the field does not exist, but also when users leave it blank.  A better solution is to use Request.FormCount("test1"), which will return 0 if the field does not exist.

FoxWeb Support Team
support@foxweb.com email

Sent by Ramon on 09/05/2003 07:01:53 AM:
is there a way to know whether the input text name is defined or not?
ex. i have <input type="text" name="test1">
how can i know that "test2" doesn't exist?