C# 无法识别web.config中的用户控件注册表

C# 无法识别web.config中的用户控件注册表,c#,html,asp.net,C#,Html,Asp.net,我已经在我的web.config文件中注册了一些用户控件,它们都工作得很好。现在,当我尝试添加2个新的用户控件时,它不起作用 <controls> <add tagPrefix="ASS" src="~/UserControls/BookPreview.ascx" tagName="BookPreview"/> <add tagPrefix="ASS" src="

我已经在我的web.config文件中注册了一些用户控件,它们都工作得很好。现在,当我尝试添加2个新的用户控件时,它不起作用

<controls>
    <add tagPrefix="ASS" src="~/UserControls/BookPreview.ascx" tagName="BookPreview"/>
    <add tagPrefix="ASS" src="~/UserControls/BookList.ascx" tagName="BookList"/>
    <add tagPrefix="ASS" src="~/UserControls/Login.ascx" tagName="Login"/>
    <add tagPrefix="ASS" src="~/UserControls/Register.ascx" tagName="Register"/>
    <add tagPrefix="ASS" src="~/UserControls/Rating.ascx" tagName="Rating"/>
    <add tagPrefix="ASS" src="~/UserControls/BookReview.ascx" tagName="BookReview"/>
    <add tagPrefix="ASS" src="~/UserControls/ReviewList.ascx" tagName="ReviewList"/>
  </controls>

“BookReview”和“ReviewList”不会显示,而其余的则可以

有没有人遇到过类似的问题并能够解决

多谢各位