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 タグを使用できるというリファレンスを見つけました。
<%@ Import Namespace="myAlias=System.MyNamespace" %>
ソース