通常,Web 控件的未知属性会传递到浏览器中呈现的元素。所以以下工作。
<asp:label runat="server" Text="Label Text" helpId="101" />
但是,如果您使用如下的命名空间属性
<asp:label runat="server" Text="Label Text" myNs:helpId="101" /></div>
即使在 html 元素中声明了自定义命名空间,该属性也不会呈现给客户端,例如:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:myNs="http://www.acme.com/htmlext">
有谁知道无需使用自定义控件即可将其呈现给客户端的方法。模块或其他全局“可插拔”解决方案是可以接受的。