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.