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

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -