-
Recent Posts
Recent Comments
Archives
- November 2013
- October 2013
- August 2013
- July 2013
- June 2013
- March 2013
- January 2013
- December 2012
- November 2012
- October 2012
- June 2012
- January 2012
- April 2011
- March 2011
- April 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- April 2008
- March 2008
Categories
Meta
Monthly Archives: October 2008
JavaScript XML IE and FireFox
Once again I’m doing a lot of JavaScript, but with XML. I have also been tasked with getting this JS to work in FireFox and IE. Some of the thing I’m having to do are the following: Load XML … Continue reading
Posted in AJAX
Leave a comment
SQL Function for Parsing or Spliting String
I have a table that stores a delimited string in a column. I need this string to be in a table format. So instead of trying to create this myself, I decided to Google and see if I could find … Continue reading
Posted in SQL Server
Leave a comment
Custom Server Controls
I’ve been fight with creating Custom Server Controls (Custom Controls). I have create one Custom Control that inherits from CompositeControl. And create another control that inherits from the previous created custom control. Let’s just say the process of create a … Continue reading
Posted in ASP.NET
Leave a comment
Building Proof of Concepts with XML test Data
There are many times where I want to create a Proof of Concept (POC) that uses a data table. There are situations when I build these POC that I don’t want to connect to to Database,but still need a datatable. There are … Continue reading
Posted in C#
Leave a comment
SQL – How to use (not use) GO within Batches
“GO” is not a T-SQL statement, it’s a command specific to utilities such as SQLCmd, OSQL, Query Analyzer and SQL Server Management Studio. Go is not part of ANSI-SQL or Transaction-SQL (TSQL). The GO command is interpreted by these tools to trigger … Continue reading
Posted in SQL Server
Leave a comment