Dynamically added controls disappear on postback At first glance it appears that adding a control to a form dynamically is quite simple. In fact, adding a control to a form is simple. The problem is when you need to perform… Read More ›
ASP.NET
ASP.NET – Web Sites vs Web Applications
What is the difference between an ASP.NET Web Site and Web Application? In this lesson I discuss the major differences between an ASP.NET Web Site and an ASP.NET Web Application. I’ll help you make a determination which type of project… Read More ›
Getting Started with ASP.NET Web Sites
What makes ASP.NET Web Sites Different? In this lesson I will show you how to create a basic ASP.NET web site. I will also explain the basic structure of a web site as follows. How ASP.NET separates Code from HTML… Read More ›
How to Schedule a Process in ASP.NET
I have on occasion needed to schedule a process to run on a nightly basis, but I did not have access to the server where I could schedule a windows service. So I had to turn to using a timer… Read More ›
Adding Controls to an ASP.NET form Dynamically
At first glance it appears that adding a control to a form dynamically is quite simple. In fact it is. It’s when you need to be able to persist that control on multiple post-backs where you start running into problems…. Read More ›