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.
我在代码隐藏中有一个这样定义的 using 语句:
using Name = Extremely.Long.And.Unwieldy.Namespace
我希望能够在我的 aspx 页面中执行此操作:
<%=Name.Type %>
到目前为止,我想出的最好的是:
<%=Namespace.Type %>
使用此处显示的技术。
我还能做得更好吗?
试试这个:
<%@ Import Namespace="Name=Extremely.Long.And.Unwieldy.Namespace" %>
我找到了能够使用导入标记进行命名空间别名的参考。
<%@ Import Namespace="myAlias=System.MyNamespace" %>
来源