By tag: Mikeon
0
kicks
Working With Web.config And App_Code
Few things to know when working with Web.config and App_Code directory. What is the assembly name for App_Code classes, how to use controls defined there etc.
0
kicks
Good Practice For Working With ASP.NET Controls
A good practice that I'm using when working with ASP.NET controls that saves me a lot of work.
0
kicks
Anonymous Methods vs Threads
What happens when you combine anonymous methods and threads - a things you need to be aware or you will encounter a strange behavior that will be hard to explain.
0
kicks
How To Writer br Without Writing br
On using HtmlTextWriter object with HtmlTextWriterTag enumeration and how to writer <br /> without using literal "<br />" string.
0
kicks
Getting All Controls On The ASP.NET Page
How to get all controls on a page in a recursive way -
FlattenHierarchy method and what you can do with it.
0
kicks
Working With Asynchronous WebRequests
Do you knowh how to handle multiple asynchronous WebRequests? Do you know why the obvious way doesn't work?
0
kicks
The DIV Tag Around Hidden ASP.NET Input Fields
How to get rid of the div tag that gets generated around hidden ASP.NET input fields? Is it at all possible? Yes, but not in a way one would expect.
0
kicks
Self-Hiding ASP.NET Control
Making a self-hiding ASP.NET control - what can surprise you on your way.
0
kicks
Recursive Properties Of ASP.NET Controls
It seams that some of the properties of ASP.NET controls are recursive...
0
kicks
ReadOnly TextBox ASP.NET Control
Hot to make a TextBox control that renders itself as a plain text if ReadOnly and as an Input otherwise.
0
kicks
Pitfalls of ASP.NET Localization
Few pitfalls and things you have to know about ASP.NET Localization features, before you start to love it.
0
kicks
ASP.NET Initial Validation
How to perform initial validation on an ASP.NET page using Validation Controls
0
kicks
Catch-up Events
Catch-up Events in ASP.NET - an example of how you can see how it all works.
0
kicks
Validation Controls As Images - Take 2
How to make ASP.NET Validation Controls to display image instead of a plain text.