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

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -