In Test1.cshtml, I have nothing but this:

@using Ext.Net
@using Ext.Net.MVC
    @(
    Html.X().Container()
        .ContentFromAction("Test2", "Test2", new {id = 0})
    )
Test2.cshtml is blank altogether.


How can I be getting a "Token is not unique" exception when I navigate to Test1.cshtml?

I have other views in my project, which are not used by Test1 - could this error be happening due to not unique tokens there?