[5769] in www-talk@info.cern.ch
Re: Forms support in clients
daemon@ATHENA.MIT.EDU (Brian Behlendorf)
Sun Sep 25 00:23:08 1994
Date: Sun, 25 Sep 1994 05:21:27 +0100
Errors-To: listmaster@www0.cern.ch
Errors-To: listmaster@www0.cern.ch
Reply-To: brian@wired.com
From: Brian Behlendorf <brian@wired.com>
To: Multiple recipients of list <www-talk@www0.cern.ch>
I don't understand what you're trying to do. If you're trying to give
names to the variables in a form, doesn't the NAME tag do that already?
Or are you trying to place some sort of default text in the text entry
field (which can be done using VALUE)?
Brian
On Sat, 24 Sep 1994, Gavin Nicol wrote:
> Has anyone thought of allowing text substitution using forms? For
> example:
>
> <!DOCTYPE HTML SYSTEM "html.dtd">
> <HEAD>
> <TITLE>Search Form</TITLE>
> </HEAD>
> <BODY>
> <HR>
> <H1>Search Form</H1>
> The following is a simple search template. Please fill in the fields.
> <P>
> <FORM ACTION="http://foo/$doc?$sstr" METHOD=GET>
> Enter your query below.
> <INPUT TYPE="text" ID="sstr" NAME="Search string" MAXLENGTH=80><P>
> <INPUT TYPE="text" ID="doc" NAME="Document Name" MAXLENGTH=80><P>
> <INPUT TYPE="submit" NAME="Send Request">
> </FORM>
> </BODY>
>
> ID is just an example. Ideally we should use NAME. Such a scheme would
> add a huge amount of flexibility to forms support at little cost I
> think. Looking at the code in Mosaic that handles forms, the changes
> appear to be simple enough...
>