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.
从 .Net Framework 2.0 开始,可以使用 web.config 的控件元素为所有页面注册自定义控件。从性能的角度来看,这样做是否比使用 ASP.Net 页面的 <%@ Register 元素更有效?
从效率的角度来看,似乎在 web.config 中使用 controls 元素会更好,因为它在应用程序启动时被缓存一次;而 page 指令Register将在每个页面请求中处理。
Register