Is there a way to make the input field 'active' as soon as the page opens - whether it's the main form page or just a simple form?
Tim
Tim
Response.Write("<form method=""get"" action=""" & selfURL & """ class=""zoom_searchform"">") & VbCrlf Response.Write(STR_FORM_SEARCHFOR & " <input type=""text"" name=""zoom_query"" size=""20"" value=""" & encQuery & """ class=""zoom_searchbox"" tabindex=""0"" />") & VbCrlf
Response.Write("<form method=""get"" name=""MySearchForm"" action=""" & selfURL & """ class=""zoom_searchform"">") & VbCrlf Response.Write(STR_FORM_SEARCHFOR & " <input type=""text"" name=""zoom_query"" size=""20"" value=""" & encQuery & """ class=""zoom_searchbox"" tabindex=""0"" />") & VbCrlf
<BODY onLoad="document.getElementById('zoom_query').focus()">
Comment