Home Jsp JSP Get URL



JSP Get URL
Posted on: February 4, 2009 at 12:00 AM
JSP Get URL is used to get the url of the current JSP page. The HttpServletRequest interface has a method getRequestURL ( ) that return the url of the current page.

JSP Get URL

        

JSP Get URL is used to get the url of the current JSP page. The HttpServletRequest interface has a method getRequestURL ( ) that return the url of the current page.

Understand with Example

The Tutorial illustrate an example from 'JSP Get URL'. To understand the example we create a getUrl.jsp that include a scriptlet. Inside the Scriptlet we have used the method getRequestURL that gives you the URL of the current JSP page.

<%=request.getRequestURL()%> : The method is used to obtain the URL of the current JSP page.

 

Here is the code of getUrl.jsp

<html>
<head>
<title>Get URL</title>
</head>
<h2>Get URL of Current JSP</h2>
URL is: <font color="red"><%=request.getRequestURL()%></font>
</html>

Output will be displayed as:

Download Source Code:

Related Tags for JSP Get URL:
chttpjspurlinterfacehttpsservletmethodsedgetrequestpagereturnintjstoehttpservletrequestusececurrentinasmntpstrletjaceesagemesurnspatquestisharvttssrenthtpssthatfacehttpservleto


More Tutorials from this section

Ask Questions?    Discuss: JSP Get URL   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.