vote up 1 vote down star

Is there any way to create a Namespace alias in a .aspx file (not code-behind .aspx.cs).

For example... in a code-behind file an alias can be created as follows:

using MyPanel = System.Web.UI.WebControls.Panel;

In html source mode (Visual Studio) a Namespace can be imported as follows:

<%@ Import Namespace="System.Web.UI.WebControls" %>

What I need to do is something like the following:

<%@ Import Namespace="MyPanel = System.Web.UI.WebControls.Panel" %>

EDIT/UPDATE: Obviously that does not work. Is it possible some other way without using code-behind? Yes, it actually does work if you remove the whitespace (hat tip @Alex below). Example:

<%@ Import Namespace="MyPanel=System.Web.UI.WebControls.Panel" %>
flag

75% accept rate

1 Answer

vote up 5 vote down check

Actually, your third example does work. You need to get rid of the white space. To get your ASPX namespace alias working, write the namespace declaration like this:

<%@ Import Namespace="MyPanel=System.Web.UI.WebControls.Panel" %>

link|flag
excelent. I can't believe I never tried removing the spaces. doah. – jlang Aug 31 at 6:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.