I have developed an ASP.NET control for which one of the properties is a [Flags] enum. However, I don't seem to be able to specify multiple flags for this property in the ASP.NET control markup. Is there a special syntax to do this or is it just not possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Maybe I'm understanding the question wrong, but can't you set the enum value with a comma-separated string. E.g. if I have this property in my control:
The I can set it in the markup like this:
|
|||
|
|
|
Just seperate the flags by commas. Test.ascx
Test.ascx.cs
Test.aspx
|
||||
|
|