On 4/18/2011 8:36 PM, A F wrote:
> Hi All,
> I writting some cgi script on window running Apache.
> I am having probelem getting the value on the entry box when I use 
> ID="userid" ( <input type="text" id="userid"/> )
> But if I use NAME="userid" ( <input type="text" name="userid"/> ), the value 
> getting passed but my autocompletion stop working.
> Any idea how can I pass my variable using ID ?

name is the proper filedname to pass to the CGI not id, id is for CSS use.
Can't you just put both in there ? :

The normal way to input a username:

        <input type="text" name="userid" value="">

can easily append the id keyword too for manipulation (not for CGI
purposes):

        <input type="text" id="userid" name="userid" value="">
_______________________________________________
Perl-Win32-Web mailing list
Perl-Win32-Web@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to