When to use HTTP Modules versus Global.asax Files One should use a module whenever one must create code that depends on application events, and when […]
ASP.NET Interview Questions 1. What is the difference between user controls and custom controls?2. What are the 3 types of session state modes?3. What are […]
C# code to get list of parent ASP.NET controls from Child ASP.NET controls private ArrayList WalkthroughContainers(Control ctl) { ArrayList retContainers = new ArrayList(); Control parent […]