User control
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi all, I have a enum in a user control UC1. I want to access that enum in another user control UC2.. How to do that in ASP.NET/C#? THANKS IN ADVANCE,
CST
-
Hi all, I have a enum in a user control UC1. I want to access that enum in another user control UC2.. How to do that in ASP.NET/C#? THANKS IN ADVANCE,
CST
It's not good practice to have one control depdendent on another. You would be better to take the enum to another class within your application and have both controls reference that class.