Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个错误是什么意思?'Admin_ManageInvtry。' 不是属性“继承”的有效值。我已经查看了代码,删除并重做页面,但仍然得到同样的错误。有人可以告诉我为什么。谢谢。
您必须Inherits在代码隐藏中使用部分类的名称设置属性值。
Inherits
例如,这是代码隐藏中的代码
public partial class Sample : System.Web.UI.Page{ ...}
并且 .aspx 标记必须是,
<%@ Page Language="C#" .... Inherits="Sample" %>