Implement a Custom MVC Base View Page

后端 未结 1 630
悲哀的现实
悲哀的现实 2021-02-20 10:00

I am attempting to implement an MVC custom base view page in order to \"override\" the User property type. This will make my CustomPrincipal type acce

1条回答
  •  囚心锁ツ
    2021-02-20 10:05

    You need to provide 2 versions of the WebViewPage, a generic and non-generic.

    public class BaseViewPage : WebViewPage
    {
    }
    
    
    public class BaseViewPage : WebViewPage
    {
    }
    

    0 讨论(0)
提交回复
热议问题