Search Results

3
votes
2answers
88 views

.NET Workflow Engine Suggestions ( currently considering stateless )

I came across stateless, a hierarchical state machine framework based on …
4
votes

How do you bind an Enum to a DropDownList control in ASP.NET?

Use a Utility class to get a Dictionary from an Enum and then bind that to a bindable Control public static class Utilities { public static Dictionary<int, string …
1
vote

Should I always call Page.IsValid in ASP.NET WebForms C#?

You can check the validity of a Page by checking the Page.IsValid property, your purpose to check the Page.IsValid might vary like If you have Validators which has the EnableClie …