How I redirect with link in asp.net mvc? -
i used 1 link in asp.net mvc project way.
<a href="<%= url.action("displayaction", "tempcontroller") %>" title="display" />
it works in calling controller.but,i want call normal aspx in way.
for eg,
<a href="<%= response.redirect "webform.aspx" %>" title="display" />
please give me right ways.
regards
indi
if want navigate normal page standard way html, set href
of anchor attribute:
<a href="webform.aspx" title="display">link text</a>
Comments
Post a Comment