Can we use Razor syntax in ASP.NET Webforms (*.aspx pages)?

Solution 1:

We (the ASP.NET team) currently have no plans to support the WebForms page model using Razor syntax. Furthermore it is unlikely that we would ever seriously consider this as the models are too different to make the two work together.

Solution 2:

You can use Razor pages without MVC; this is called ASP.Net WebPages.

Just add .CSHTML files to a normal ASP.Net 4.0 project.

I explained how this works in my blog.