Justin Cooney
Web Development Tips and Examples
Category: Programming
-
As a developer, a commonly requested feature is the ability to export data from the Web into MS Excel. Choosing the best way to export your data from an ASP.NET Web page to Excel for your users is never an easy task. There are several ways to generate your reports, with each way having its pros…
-
ASP.NET offers strong support for regular expressions in the System.Text.RegularExpressions Namespace. This is great since regular expressions are essential if you want to do anything beyond basic text manipulations and searches. You can read more about regular expression support in ASP.NET on the official MSDN page. The MSDN site also includes a few good getting…
-
If you are working with ASP.NET in Visual Studio, then you may be mystified when you see an error code : Adding the specified count to the semaphore would cause it to exceed its maximum count. This error had me wondering what exactly is going on…