Re: Reload .jsp page

1999-09-16 Thread Marc Hedlund
s", 0); >} The HTTP/1.1 spec recommends that HTTP/1.1 servers send _both_ Pragma and Cache-Control. Marc Hedlund <[EMAIL PROTECTED]> === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-I

Re: response.sendRedirect () with parms

1999-09-15 Thread Marc Hedlund
ncodedMsg = java.net.URLEncoder.encode(e.getMessage()); response.sendRedirect("udpate_error.jsp?msg=" + encodedMsg); %> Although, I think a better way would be to have the databse throw an exception, and then set <%@ page errorPage="update_error.jsp" %>, instead of tr

Re: response.sendRedirect () with parms

1999-09-14 Thread Marc Hedlund
At 06:29 PM 9/14/99 +, Sandy Tiu wrote: >I did this inside my JSP : > ><% >response.sendRedirect(update_error.jsp?msg=errormsg); >%> > >and I'm getting this error: > >HTTP Error 400 You probably want <% response.sendRedirect("update_error.

Re: Request Object

1999-09-10 Thread Marc Hedlund
uot; 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]> ===

Re: End of JHTML?

1999-09-09 Thread Marc Hedlund
yntax of jhtml? JHMTL will likely stick around for people who have code built on it, but I doubt it will be upgraded. JSP-1.0 and Servlet-2.1 are supported in WebLogic Server 4.5 (current release), ask your customer rep about upgrades. JSP-1.1 and Servlet-2.2 are planned for a future release. Hope

Re: Questions about JSP-1.1 public draft 1 (fwd)

1999-08-08 Thread Marc Hedlund
on of the spec that will go > for expert review on Monday (tomorrow); the spec will go for public > review about a week after that, depending on the logistics of pushing > material to the web site. Sounds like you'

Questions about JSP-1.1 public draft 1

1999-08-07 Thread Marc Hedlund
th includes. On page "v", the spec sets out a schedule indicating a late-July release of public draft 2, and a mid-August public release. Has public draft 2 been release? If not, is there an updated schedule available? Thanks, Marc Hedlund <[EMAIL PROTECTED]> ===

Re: Caching (utility bean + argument + offer)

1999-06-08 Thread Marc Hedlund
odelled on the GSP implementation). Marc Hedlund <[EMAIL PROTECTED]> === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JSP-INTEREST". For general help, send email to

Caching (utility bean + argument + offer)

1999-06-08 Thread Marc Hedlund
in the hope that JSP implementors will consider using a standard design of the form I suggest, or even that Sun will consider standardizing this functionality. I'd appreciate any comments or code patches/suggestions anyone might have, including successful test reports under different JSP

Re: FAQ, q13 DBConnectionPool

1999-06-07 Thread Marc Hedlund
On Mon, 7 Jun 1999, Vincent Roderick wrote: > I'm trying to get the connection pool example to work from the FAQ > using the JSP 1.0 spec with the JWS that comes with it. You might want to also check out . <[EMAIL PROTECTED]> ==