hyperlinks in a struts 1


Global Forward: <html:link> tag is used to simulate hyperlinks in a struts application that is from hyperlinks request is send to the controller, Controller decide next view.

In jsp page:-
<html:link forward=”reg”>
In Mapping:-
<global-forwards>
<forward name=”reg” path=”/reg.jsp”>
</global-forwards>

Comments

Popular posts from this blog

What is Struts Framework?

HOW TO ACCESS SESSION IN STRUTS 2 WITH EXAMPLE

Why java uses both compiler and interpreter?