At 09:49 PM 9/10/99 +0000, Sandy Tiu wrote:
>From a JSP page, I am getting this error:
>
>-------------------------------------------------------------------
>    52. strSQL =  Request.Form("tbAccountNum");
>                  <----->
>*** Error: "Request" is either a misplaced package name or a non-existent
>entity.

Try

  strSQL = request.form("tbAccountNum");

Case matters -- request is an implicit variable, not a class static.

Marc Hedlund <[EMAIL PROTECTED]>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to