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…
Category: .Net 2.0
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.…
In ASP.NET, the DataList control renders as a table. Opening a new table in the header and trying to get rows to render just won’t…
Wriju has a gread roundup of eBooks/guidance available on CodePlex.
If you need to stop a datareader in the middle, instead of at the end, you have to call cancel on the command object. Calling…
Ran into a performance issue in a .Net remoting situation. A Winforms app is calling an application server asking for data. A relatively large DataSet…
I have a web project (the original 2005 web project type, not a web application project) and had a problem getting files copied to the…
I have a pipe-delimited text file that I am parsing and using to fill a collection of custom business objects. Instead of hard-coding the bits…
No need to create a function yourself or reference a VB library: A great post by Rick Strahl: public static string TitleCase(string input) { …
Thinktecture has released a Visual Studio 2005 compatible version of their free WSCF tool. WSCF is a Schema-Based Contract-First Web Services code generator. It allows…