Using themed css files requires a header control on the page. (e.g. <head runat=“server” />)

前端 未结 7 1244
没有蜡笔的小新
没有蜡笔的小新 2021-02-12 15:24

I\'m working on asp.net web project. When I run the project, It works correctly. But In server, I got the following error. How to solve this problem?

Using theme         


        
相关标签:
7条回答
  • 2021-02-12 16:23

    you need a head tag with runat="server" in the page (or master page) as below

    <head runat="server">
        <title></title>
    </head>
    
    0 讨论(0)
提交回复
热议问题