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