=?Utf-8?B?RGFuQw==?= wrote on 23 jan 2005 in
microsoft.public.inetserver.asp.general:
> <input type="hidden" name="hclass" value = <%Request.Form("klas") %>>
>
> But that seems not to work. ( no error appears)
should be:
<input type="hidden" name="hclass"
value = "<%Request.Form("klas")%>">
==================
Because, if the content of Request.Form("klas") is
"blah blah" you would get rendered:
value = blah blah>
suggesting to the browser:
value = "blah" blah>
and not
value = "blah blah">
Therefore it is essential for debugging
to view the rendered html source in the browser!
--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)
|