asp.net - Redirect to an .aspx page that is in another project from a MVC project -
i have 2 projects in solution. 1 mvc 4 project , other 1 web form application. have report.aspx page in web form application. question is: can redirect report.aspx mvc project's actions or views?
yea, should not issue.
responce.redirect("[your url here]"); you can use client side redirect using javascript (registerclientscript), following javascript command.
window.location.replace('your url');
Comments
Post a Comment