i used one link in my asp.net mvc project like this way.
<a
href="<%= Url.Action("DisplayAction", "TempController") %>" title="Display"
/>
it works properly in calling controller.But,i want to call normal aspx in
that way.
For eg,
<a href="<%= Response.Redirect "WebForm.aspx" %>" title="Display" />
Please give me right ways.
Regards
Indi
If you just want to navigate to a normal page the standard way from HTML, you just set the
hrefof the anchor attribute: