Is there any way to render a normal view of asp.net MVC action onto an old .aspx WebForm using an MVC helper or some other method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Disclaimer: The proposed solution below is a hack. Suppose that you have the following controller:
and a corresponding partial ( And now in a legacy WebForms page you wanted to use this action. Here's how you could proceed:
|
|||||||||
|
|
I think the easiest would be using client-side scripting. For example using |
|||
|
|
|
I used this code in my MasterPage and it worked. But after days I have found that my application was restarting every minute because of memory leaks. I was hunting days for the cause and finnally, this part of code was the cause of memory leak. You have to dispose DummyController and ViewPage. I have fix it like this:
|
|||
|
|