Welcome to Tech-Review.Org Sign in | Join | Help

.net_2.0

My coding blog entries. Typically will either be more complex coding examples or overcoming product issues / troubleshooting resolutions.

March 2007 - Posts

URIs..System.Net (Part III)
This part of the series will cover some practical uses of the URI as well as some other URI issues I have run up against when developing. The previous articles in this series discussed how to properly use the URI method. Those articles demonstrated how Read More...
URIs..and System.Net (Part II)
In Part I of this series, the rudimentary basics of the URI class was covered. Covered were the components that the URI() breaks down into, the overloaded methods of the URI() and how they are used, and a highlight on some of the issues when relying on Read More...
URIs..and System.Net (Part I)
The overall URI features of the System.Net is probably one of the worst and least documented aspect of .Net 2.0. While the basics of the URI class is reasonably documented, there still has to be additional issues addressed by the developer to provide Read More...
Working with Response Codes...
When developing custom IHTTP handlers; a developer has to handle when a parsed incoming url request does not match any dynamic content - or in other words - "404 Page Not Found". A well written IHTTP handler will most likely - when exhausting all possible Read More...
Using Uri's to determine valid urls with minimal RegEx
If there is one aspect of programming I understand the least (less javascript and Ajax) it is using Regular Expressions. For simple stuff - it is relatively easy - but I wanted to write a robust url checker and seems everyone has a different way of doing Read More...
AjaxToolKit: Dynamic Service Path / CalendarExtendar
Rant: Even though I have blogged and Shawn Burke acknowledged and stated this issue would be resolved with the official release of the Toolkit - the ToolKit is still referencing FilePath instead of RawUrl. Again as previously blogged, and posted on Asp.Net Read More...
Comments on: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it
Elion Lipton recently wrote - Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it , which explains some of the reasons the PageRequestManagerParserErrorException occurs. Please, take this in the spirit it is intended - Read More...
SQL Batch Statements with Transactions
I'll state this upfront, this is not tested in terms of performance - as the objective with my DAL aproach is to reduce the number of methods the DAL contains and institute transactions for any data written to the database. Additionally, utilizing Generics Read More...