Lance Prais <[EMAIL PROTECTED]> writes: > I am not sure what is going wrong here could someone please help. > > I want to set a value to an input box. This value is passed from a previous > form. > I would normally do it this way. > <input type="text" name="QueryText" Value="<%QueryText%>"size="20" > style="text-align: Left; width: 280" tabindex="1" maxlength="500"> > > I am using Iplanet and when I do the above statement it blows up.
If you're using JSP then this should be: <input type="text" name="QueryText" Value="<%= request.getQueryString() %>"size="20" style="text-align: Left; width: 280" tabindex="1" maxlength="500"> But I think you probably need to be a little clearer about what you're doing. Nic ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
