Website Connectivity Woes and Woe-Nots
by Allan Sieker
The story you are about to hear is true and should be of interest to all web developers – be you .NET or not.
A few businesses I know had issues with web site connectivity a few weeks ago. Some computers could connect while others could not. IE 8 seemed to have more of a problem than IE 7. The client could access other web sites ok. Client locations were across the US and not all local (the St. Louis area).
Read the rest of this entry »
sql transactions in c# .net
I recently needed to update an existing C# solution of multiple projects to add transactions around two different data updates. I wanted to have this pattern for each one:
- Start transaction
- Delete all existing data
- Insert all new data
- Commit transaction