| Store | Cart

Re: CGI value is not getting passed

From: Bill Luebkert <dbec...@roadrunner.com>
Mon, 18 Apr 2011 22:07:14 -0700
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...@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Recent Messages in this Thread
A F Apr 19, 2011 03:36 am
Bill Luebkert Apr 19, 2011 05:07 am
Messages in this thread
Next post: (NONE)