There are several ways how to compare two strings in .Net but not all of them have similar performance impact. The blog post describes why certain methods work slowly and which comparison tool is the optimal to use in .Net.
Read More...
Most of programmers who are dealing with ASP.NET know how to access files on the server. The common way how to do this is to use HttpContext.Current.Server.MapPath static method and get physical path of the file by passing virtual. But what if we need
Read More...
During creating of Custom Controls sometimes programmers are dealing with implementation of code which should run only in Design Time mode. And the main question is, how to determine in ASP.NET whether your code is running in Design Time mode or not?
Read More...