Redirect in JSP Core Tag Library

What is "redirect" tag in JSP Core Tag Library?

Explanation

The redirect tag of the core tag library can be used to redirect to a file or to an url.

Example :


<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:redirect url="http://www.google.com"/>

In the above example we have used the "<c:redirect" to redirect to google.com website, even this can be used to redirect to a file also.

Ask Questions

Ask Question