Ever since the var keyword was released in C#, I’ve struggled with using it. To me var felt like using variant or object in VB,…
Category: .Net 3.5
The requirement in this case is to print a PDF document, but not allow the user to manipulate the PDF in any other way. The…
I recently ran into an interesting situation that I was able to solve through code. The project was to create a document migration tool, something…
By default, ConfigurationElementCollections don’t implement IEnumerable<T>, so if you are using custom configuration sections you can’t query them with linq. I found a casting solution,…
Extraction rules are essentially for finding data in the HTTP response and placing it in the output context of the web test. There are a…
90% of the projects I work on need to send emails, and most clients don’t allow developer SMTP servers floating around their network (for good…
Found an interesting tidbit today. There is an ASP.NET page that is using session variables. The user has visited the page, and populated the session.…
This took me longer than it should have to figure it out, so I am documenting it for later reuse. The case here is described…
I was working to add some Ajax interactivity to a page that needed some asynchronous workings. Unfortunately, after displaying a ModalPopupExtender and the user clicking…
I’m working on a website with lots of user controls interacting with one another using ASP.NET Ajax using events. So I end up needing to…