I've tried to copy this example here.
The only change I've made is changing the text that it'll output :
public override System.IO.Stream Open()
{
return new System.IO.MemoryStream(System.Text.ASCIIEncoding.ASCII.GetBytes("@inherits System.Web.Mvc.WebViewPage\r\n@{ViewBag.Title = \"About Us\";}\r\n"));
}
But I can't seem to persuade it to evaluate the Razor mark-up.
Any suggestions?