Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have on request from a client built a huge site with ASP.NET Web forms. The problem is that I'm finding ASP.NET Web forms to be somewhat unintuitive (my personal taste only). So what I would like to do is use MVC but I can't really expect my client to pay for my time on a complete rewrite (nor do he have the time).

So what I'm asking is, can I use ASP.NET MVC and Web forms at the same time and gradually use MVC more and more? Any tips?

share|improve this question

2 Answers

up vote 14 down vote accepted

Scott Hanselman blogged about that subject, you might find his post useful.

share|improve this answer

Edit 2: You can create a MVC project and just copy all the Webforms pages into e.g. a folder. Then just setup routing to ignore requests with that particular foldername in the URL. This way MVC and webforms can be used together.

The text below is meant to demonstrate how you can utilize MVC from inside a webforms page. (For example inside MyPage.aspx) You can use MVC actions/views inside webforms with e.g. ajax to fill a portion of the page or certain div's

Edit: Asp.net WebForms usual aspx pages can also reside within Asp.net MVC web applications as long as they're not placed inside the /Views folder.

Webforms containing MVC works fine, at least when adding an ajax call inside the HTML to fill a div from MVC.

Inside an .aspx

..html & webforms code

<div id="fillMeFromMVC">
  <script type="text/javascript">
   $.ajax(... call an MVC action to fill 
      the "fillMeFromMVC" div that this script sits inside of);
 </script>
</div>

This will fill a portion of the page via MVC and you can cleanly do your MVC without worrying about what's done in webforms.

share|improve this answer
I think you're wrong because MVC RouteCollection has this setting called RouteExistingFiles which is false by default. This means that if you access an existing aspx page (and it doesn't reside inside the Views folder (local web.config prevents direct request access to files), it should be handled as an everyday WebForm. – Robert Koritnik May 9 '12 at 8:40
Ok, I'm not entirely sure about that point, I edited the post. – lko May 10 '12 at 9:45
@Iko: if you'r enot sure, you can test it, right? :) But I wasn't talking about embedding Web forms server controls inside MVC view... I was saying that web forms pages can reside inside MVC web applications. So you obviously misunderstood my comment because what you were doing is mixing WebForms page with partial Asp.net MVC view. And that's a different thing that OP was asking about. – Robert Koritnik May 10 '12 at 17:38
@RobertKoritnik Ok good to know, so you can do the reverse (Webforms inside a MVC page) . However he was asking about using them both in the same project. I can assume that at some point he may want to update a portion of a page, in which case it is simple to just drop the webforms section and replace it with MVC. Let's say there's some bloated complicated control which he could replace with MVC, this is possible using my suggested solution. He asked for tips and I've done this before and I see it as a likely situation he could encounter (especially as he notes his preference is MVC). – lko Oct 19 '12 at 7:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.