简体   繁体   中英

How to access created enum in C# from code behind to aspx file

Below is my code behind C# code:

namespace Test
{
    public enum en
    {
       One,
       Two
    }

}

How can I access this created enum in my aspx file? Like using the enum in this code:

<%


%>

Thanks

This seems to work ala BoltClock (en didn't seem like a very good name).

namespace Test
{
    public enum MYENUM
    {
        One,
        Two
    }
}

<% Response.Write(Test.MYENUM.One.ToString()); %>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM