Duncan,

and String param = servletContext.getInitParameter("param");
>
Thanks for the replies, but what do I define servletContext as?

In every JSP, the ServletContext object is implicitly declared with the identifier "application".


So, you should just be able to do something like this in your JSP:

<p>
   my_param = <%= application.getInitParameter("my_param") %>
</p>

-chris



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to