How to fix namespace problem with autogenerated Master property if MasterType is set

后端 未结 5 1127
心在旅途
心在旅途 2020-12-18 06:06

after weeks of having this issue I finally decided to ask for a solution to the following problem:

In the .aspx page you can set

<%@ MasterType          


        
5条回答
  •  没有蜡笔的小新
    2020-12-18 06:48

    Change

    <%@ MasterType VirtualPath="~/Mastername.master" %>
    

    to

    <%@ MasterType TypeName="Mastername" %>
    

    this will work perfectly

提交回复
热议问题