How to find the JSP file name!

2004-09-20 Thread Rajamani M
Hai, I am using the jsp files for the flow of execution. In one jsp, I want to know the called jsp file. Is it possible? Because, I am using the different login pages according to the user. But one validation jsp. In this validation jsp I want to know the login page name. With that only I'll proc

Re: How to find the JSP file name!

2004-09-21 Thread J Pace
Why not just pass the file name as a parameter to the validation page? Jared - Original Message - From: "Rajamani M" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 21, 2004 2:36 AM Subject: How to find the JSP file name! > Hai, > > I

Re: How to find the JSP file name!

2004-09-21 Thread Big Chiz
> > > - Original Message - > From: "Rajamani M" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, September 21, 2004 2:36 AM > Subject: How to find the JSP file name! > > > Hai, > > > > I am using the jsp files for t

Re: How to find the JSP file name!

2004-09-22 Thread Mark Galbreath
Pass the name of the calling JSP in the Request object; dynamically set a hidden field in the calling page with the origination URL. Mark Rajamani M wrote: Hai, I am using the jsp files for the flow of execution. In one jsp, I want to know the called jsp file. Is it possible? Because, I am using th

Re: How to find the JSP file name!

2004-09-22 Thread Ananthalakshmi Subramaniyam
nce <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: How to find the JSP file name! Date: Wed, 22 Sep 2004 07:01:21 -0400 Pass the name of the calling JSP in the Request object; dynamically set a hidden field in the calling page with the origination URL. Mark Rajamani M wrote: Hai, I am

Re: How to find the JSP file name!

2004-09-22 Thread Rajamani M
: [EMAIL PROTECTED] Subject: Re: How to find the JSP file name! Hi, HTTP Header 'Referer' will have the information. To access referer in Jsp, String strReferrer = request.getHeader("Referer"); Thanks, H.Ananthalakshmi. >From: Mark Galbreath <[EMAIL PROTECTED]> >Rep