<?xml version="1.0" ?><rss version="2.0" xmlns:ec="http://www.nullskull.com"><channel><title>nullskull.com faqs</title><link>http://www.nullskull.com</link><pubDate>Sat, 21 Dec 2013 11:00:35 GMT</pubDate><description>Nullskull - The .NET developer's portal of choice</description><language>en-us</language><item><title><![CDATA[ThreadPool.QueueUserWorkItem Multi-threading Code Sample]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1488/threadpoolqueueuserworkitem-multithreading-code-sample.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1488/threadpoolqueueuserworkitem-multithreading-code-sample.aspx]]></link><description><![CDATA[Here is a barebone example of how to use the ThreadPool to queue up tasks in a multi-threaded environment.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1488/threadpoolqueueuserworkitem-multithreading-code-sample.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 04 Mar 2013 14:30:52 GMT</pubDate></item><item><title><![CDATA[Generate Full Bank ABA Routing Number given the Federal Reserve Routing Symbol and ABA Institution Identifier]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/216/generate-full-bank-aba-routing-number-given-the-federal-reserve-routing-symbol-and-aba-institution-identifier.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/216/generate-full-bank-aba-routing-number-given-the-federal-reserve-routing-symbol-and-aba-institution-identifier.aspx]]></link><description><![CDATA[A bank ABA number our routing number is made up of three numbers, the federal reserve routing symbol (4 digits), the ABA institution indentifier (4 digits) and a check digit (1 digit).  This SQL stored procedure returns the full bank routing number given the first two parts.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/216/generate-full-bank-aba-routing-number-given-the-federal-reserve-routing-symbol-and-aba-institution-identifier.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 16 Aug 2012 12:55:12 GMT</pubDate></item><item><title><![CDATA[VB.NET Search and Replace in Word document]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1122/vbnet-search-and-replace-in-word-document.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1122/vbnet-search-and-replace-in-word-document.aspx]]></link><description><![CDATA[Sometimes it may be necessary to use a VB.NET applicaiton to do a Search and Replace in a MS Word document.  This function does the search and replace in all sections of the Word document and saves it back to the disk with the same name.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1122/vbnet-search-and-replace-in-word-document.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 27 Jul 2012 09:46:10 GMT</pubDate></item><item><title><![CDATA[Perform Server.MapPath When HttpContext Not Available]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/58/perform-servermappath-when-httpcontext-not-available.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/58/perform-servermappath-when-httpcontext-not-available.aspx]]></link><description><![CDATA[There are certain situations  - particularly in Global.asax where you need to map a path but the HttpContext.Current property is null.Here is a simple method that works around this issue.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/58/perform-servermappath-when-httpcontext-not-available.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 12 Jul 2012 12:57:32 GMT</pubDate></item><item><title><![CDATA[WPF ListBox and Creating Filtered Views]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1086/wpf-listbox-and-creating-filtered-views.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1086/wpf-listbox-and-creating-filtered-views.aspx]]></link><description><![CDATA[Here's a quick tip for easily implemention of filtered ListBox views of an ObservableCollection.  This really comes into play when you want to hide items in a ListBox of a third party control that has styling that is not hidden when the item in the datatemplate is hidden.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1086/wpf-listbox-and-creating-filtered-views.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 09 May 2012 10:46:28 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 14:- Implement interfaces with right clicks]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/739/visual-studio-and-net-tip-14-implement-interfaces-with-right-clicks.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/739/visual-studio-and-net-tip-14-implement-interfaces-with-right-clicks.aspx]]></link><description><![CDATA[In this Tip and tricks we will see how to implement interfaces with right click.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/739/visual-studio-and-net-tip-14-implement-interfaces-with-right-clicks.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 08 May 2012 14:31:14 GMT</pubDate></item><item><title><![CDATA[How to Take Ownership of a File or Folder To Delete It]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/240/how-to-take-ownership-of-a-file-or-folder-to-delete-it.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/240/how-to-take-ownership-of-a-file-or-folder-to-delete-it.aspx]]></link><description><![CDATA[If you perform an installation or upgrade of a Windows OS this often creates temporary folders called "windows.old". These folders are system folders and you may not be able to delete them. This is how to perform these actions.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/240/how-to-take-ownership-of-a-file-or-folder-to-delete-it.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 21 Apr 2012 18:11:34 GMT</pubDate></item><item><title><![CDATA[Send authenticated SMTP email from SSIS]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1431/send-authenticated-smtp-email-from-ssis.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1431/send-authenticated-smtp-email-from-ssis.aspx]]></link><description><![CDATA[SSIS has a 'Send Mail Task', but it wont send via a SMTP server that requires authentication.  By using the Script Task it is fairly simple to write some .NET code that will send an email via an authenticate STMP connection.  Here is some sample VB.NET to send an email, it pulls all relavent information from variables that should be sent into the script from the SSIS package.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1431/send-authenticated-smtp-email-from-ssis.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 17 Apr 2012 20:51:37 GMT</pubDate></item><item><title><![CDATA[IHttpAsyncHandler, IRequiresSessionState, and IReadOnlySessionState Asynchronous Handler Issue]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/128/ihttpasynchandler-irequiressessionstate-and-ireadonlysessionstate-asynchronous-handler-issue.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/128/ihttpasynchandler-irequiressessionstate-and-ireadonlysessionstate-asynchronous-handler-issue.aspx]]></link><description><![CDATA[IHttpAsyncHandler and IRequiresSessionState are still used with asynchronous http handlers.  Remember to use the HttpContext passed into the http handler.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/128/ihttpasynchandler-irequiressessionstate-and-ireadonlysessionstate-asynchronous-handler-issue.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 02 Jun 2013 23:09:42 GMT</pubDate></item><item><title><![CDATA[XMLHttpRequest Asynchronous Multiple Request Sample Code]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1558/xmlhttprequest-asynchronous-multiple-request-sample-code.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1558/xmlhttprequest-asynchronous-multiple-request-sample-code.aspx]]></link><description><![CDATA[Here's a quick snippet demonstrating how to process multiple XMLHttpRequests asynchronously in JavaScript.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1558/xmlhttprequest-asynchronous-multiple-request-sample-code.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 21 Mar 2012 08:54:05 GMT</pubDate></item><item><title><![CDATA[Create an array of strings in SSIS]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/396/create-an-array-of-strings-in-ssis.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/396/create-an-array-of-strings-in-ssis.aspx]]></link><description><![CDATA[If you need to use an array of strings in SSIS it is a little difficult to create it as a variable in the package.  It takes defining the package variable as a system.object and calling a script task, either VB or C# (example is VB.NET).  In my example I set System:Package name as a ReadOnly variable and User:Categories as ReadWrite, this is also the one defined as the system.object.  The sample Main procedure sets the first element of the string array to the package name.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/396/create-an-array-of-strings-in-ssis.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 11 Apr 2012 22:24:03 GMT</pubDate></item><item><title><![CDATA[.NET ActiveDirectory Authentication Across Domain Controller]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1774/net-activedirectory-authentication-across-domain-controller.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1774/net-activedirectory-authentication-across-domain-controller.aspx]]></link><description><![CDATA[Using C# or VB.NET to authenticate a user in ActiveDirectory against a different domain controller can be accomplished using the code below:&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1774/net-activedirectory-authentication-across-domain-controller.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 12 Mar 2012 14:38:33 GMT</pubDate></item><item><title><![CDATA[dtSearch Remove Url Or Document From Index Using IndexJob]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1249/dtsearch-remove-url-or-document-from-index-using-indexjob.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1249/dtsearch-remove-url-or-document-from-index-using-indexjob.aspx]]></link><description><![CDATA[It only takes a few lines of code to remove a url or document from a dtsearch index.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1249/dtsearch-remove-url-or-document-from-index-using-indexjob.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 19 Feb 2012 14:55:27 GMT</pubDate></item><item><title><![CDATA[How to display date difference in Days:Hours:Minutes format using TSQL]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/500/how-to-display-date-difference-in-dayshoursminutes-format-using-tsql.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/500/how-to-display-date-difference-in-dayshoursminutes-format-using-tsql.aspx]]></link><description><![CDATA[Often times on reports from Microsoft SQL server it is nice to display the difference between two datetime fields in something other than just the number of minutes, or days.  This code snippet shows how to format the datediff output for minutes into hours, days, minutes format.  It could easily be placed in a user defined function as well as have logic added to it for seconds and milliseconds if necessary.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/500/how-to-display-date-difference-in-dayshoursminutes-format-using-tsql.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 15 Feb 2012 23:25:06 GMT</pubDate></item><item><title><![CDATA[Upcoming Microsoft MVP Summit 2012]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/713/upcoming-microsoft-mvp-summit-2012.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/713/upcoming-microsoft-mvp-summit-2012.aspx]]></link><description><![CDATA[Each year, Microsoft hosts the MVP Summit for thousands of Microsoft MVP's (Most Valuable Professionals) worldwide at the Microsoft campus in Redmond, WA. I've been fortunate to be re-nominated as an MVP each year since 2004, and I have never failed to get my butt to a summit each year.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/713/upcoming-microsoft-mvp-summit-2012.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 17 Jan 2012 20:10:59 GMT</pubDate></item><item><title><![CDATA[ViewStateMode and EnableViewState]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/472/viewstatemode-and-enableviewstate.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/472/viewstatemode-and-enableviewstate.aspx]]></link><description><![CDATA[Often developers can get confused about the various settings for ViewState on pages and individual controls. This is because the settings themselves are confusing!&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/472/viewstatemode-and-enableviewstate.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 17 Jan 2012 09:19:29 GMT</pubDate></item><item><title><![CDATA[Text Too Big In Your Browser]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/450/text-too-big-in-your-browser.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/450/text-too-big-in-your-browser.aspx]]></link><description><![CDATA[No problem. Use this quick fix to adjust the size.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/450/text-too-big-in-your-browser.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 11 Jan 2012 20:50:43 GMT</pubDate></item><item><title><![CDATA[View print statements in your stored procedures in C# via ADO.NET]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1131/view-print-statements-in-your-stored-procedures-in-c-via-adonet.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1131/view-print-statements-in-your-stored-procedures-in-c-via-adonet.aspx]]></link><description><![CDATA[You may have "print" statements in your stored procedures or function in SQL Server for informational purposes.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1131/view-print-statements-in-your-stored-procedures-in-c-via-adonet.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 31 Dec 2011 14:30:42 GMT</pubDate></item><item><title><![CDATA[DatatableToCSV]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/137/datatabletocsv.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/137/datatabletocsv.aspx]]></link><description><![CDATA[Often we need to convert a Datatable to a CSV - format file string to be able to save the file to the filesystem. Here's a neat little method to accomplish same&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/137/datatabletocsv.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 26 Dec 2011 17:14:00 GMT</pubDate></item><item><title><![CDATA[ASP.NET: Get the size of a file without downloading it]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1772/aspnet-get-the-size-of-a-file-without-downloading-it.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1772/aspnet-get-the-size-of-a-file-without-downloading-it.aspx]]></link><description><![CDATA[Some time ago I made a post on this subject, and I revisited it to check on timings.An easy way to get the size of a file over the web is to make a HEAD request for the resource and then examine the Content-Length Header. But there is another way: You can open a WebRequest, get the Response, examine  ResponseHeaders["Content-Length"], and then immediately close the stream without reading any of it. Which do you think is faster?&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1772/aspnet-get-the-size-of-a-file-without-downloading-it.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 23 Dec 2011 14:34:47 GMT</pubDate></item><item><title><![CDATA[Generating Random number between specified range]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/690/generating-random-number-between-specified-range.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/690/generating-random-number-between-specified-range.aspx]]></link><description><![CDATA[The Fuction generates a Random Number between the Specified range&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/690/generating-random-number-between-specified-range.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 23 Dec 2011 08:24:06 GMT</pubDate></item><item><title><![CDATA[How to Pad A String With Leading Zeroes]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1400/how-to-pad-a-string-with-leading-zeroes.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1400/how-to-pad-a-string-with-leading-zeroes.aspx]]></link><description><![CDATA[There are many situations where a value needs to occupy a certain number of characters, but must be padded with leading zeroes for storage. Here is a Func to do this:&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1400/how-to-pad-a-string-with-leading-zeroes.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 20 Dec 2011 15:13:48 GMT</pubDate></item><item><title><![CDATA[Parse and Split Very Large Text Files Without Out of Memory Exceptions]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1378/parse-and-split-very-large-text-files-without-out-of-memory-exceptions.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1378/parse-and-split-very-large-text-files-without-out-of-memory-exceptions.aspx]]></link><description><![CDATA[From time to time you may have the need to read a very large file and split into an array. Streamreader is your friend here.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1378/parse-and-split-very-large-text-files-without-out-of-memory-exceptions.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 18 Dec 2011 14:49:34 GMT</pubDate></item><item><title><![CDATA[HEX String Conversions With LINQ]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1225/hex-string-conversions-with-linq.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1225/hex-string-conversions-with-linq.aspx]]></link><description><![CDATA[Often you may want to convert a string to it's Hexadecimal string equivalent, or convert a HEX string back to the original text. This is useful in situations where, for example, you would like to obfuscate the query string on a URL.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1225/hex-string-conversions-with-linq.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 15 Dec 2011 16:52:28 GMT</pubDate></item><item><title><![CDATA[Read Files Simultaneously]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1245/read-files-simultaneously.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1245/read-files-simultaneously.aspx]]></link><description><![CDATA[A simple technique to read files simultaneously using a string array of file names&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1245/read-files-simultaneously.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 11 Dec 2011 17:43:03 GMT</pubDate></item><item><title><![CDATA[LINQ StartsWith]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1746/linq-startswith.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1746/linq-startswith.aspx]]></link><description><![CDATA[Equivalent of Like opertor  in LINQ&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1746/linq-startswith.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 08 Dec 2011 09:58:20 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 12:- Pin debugging and commenting]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/917/visual-studio-and-net-tip-12-pin-debugging-and-commenting.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/917/visual-studio-and-net-tip-12-pin-debugging-and-commenting.aspx]]></link><description><![CDATA[Many times while debugging we would like to:-•	See the debugged value after debugging has finished.•	Enter comments while debugging and see these comments later.•	Pin the debugger so that we can see the values while debugging.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/917/visual-studio-and-net-tip-12-pin-debugging-and-commenting.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 05 Dec 2011 08:45:43 GMT</pubDate></item><item><title><![CDATA[jQuery CSS using AddClass]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/543/jquery-css-using-addclass.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/543/jquery-css-using-addclass.aspx]]></link><description><![CDATA[Using jQuery to Apply CSS to Asp.Net Controls&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/543/jquery-css-using-addclass.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 29 Nov 2011 08:20:05 GMT</pubDate></item><item><title><![CDATA[Visual Studio 2010 outlining hide code]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/694/visual-studio-2010-outlining-hide-code.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/694/visual-studio-2010-outlining-hide-code.aspx]]></link><description><![CDATA[Visual Studio 2010 hide code&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/694/visual-studio-2010-outlining-hide-code.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 29 Nov 2011 08:20:32 GMT</pubDate></item><item><title><![CDATA[See SQL Generated by LINQ to Entities query]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/781/see-sql-generated-by-linq-to-entities-query.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/781/see-sql-generated-by-linq-to-entities-query.aspx]]></link><description><![CDATA[Code to see SQL Query generated by LINQ&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/781/see-sql-generated-by-linq-to-entities-query.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 24 Nov 2011 08:22:13 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 11:- Shortcut way to create Set and Get properties]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/632/visual-studio-and-net-tip-11-shortcut-way-to-create-set-and-get-properties.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/632/visual-studio-and-net-tip-11-shortcut-way-to-create-set-and-get-properties.aspx]]></link><description><![CDATA[In big project you have 100’s of classes and each of those classes can have lots of properties.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/632/visual-studio-and-net-tip-11-shortcut-way-to-create-set-and-get-properties.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 05 Dec 2011 08:45:20 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 10:- Remove and reorder parameters]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/187/visual-studio-and-net-tip-10-remove-and-reorder-parameters.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/187/visual-studio-and-net-tip-10-remove-and-reorder-parameters.aspx]]></link><description><![CDATA[Many times as a developer you come across functions with lots of input parameters as shown in the below code snippets.  In real projects the input parameters would be much higher as compared to the below code snippets. Some times for various reasons you want to shuffle them, reorder them or remove some of them.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/187/visual-studio-and-net-tip-10-remove-and-reorder-parameters.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 15 Nov 2011 09:02:27 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 9:- Conditional Breakpoints]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/922/visual-studio-and-net-tip-9-conditional-breakpoints.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/922/visual-studio-and-net-tip-9-conditional-breakpoints.aspx]]></link><description><![CDATA[As developer debugging is your routine job and you would like your debugger to debug smartly rather than monotonously. For instance in the below code we have put a debug point and we do not want our debugger to just break monotonously.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/922/visual-studio-and-net-tip-9-conditional-breakpoints.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 18 Nov 2011 08:17:18 GMT</pubDate></item><item><title><![CDATA[UrlEncode vs UrlPathEncode]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1468/urlencode-vs-urlpathencode.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1468/urlencode-vs-urlpathencode.aspx]]></link><description><![CDATA[The HttpUtility class offers several utility methods to encode Urls. Here are the differences.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1468/urlencode-vs-urlpathencode.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 03 Nov 2011 19:16:49 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 8:- Get inner most exception]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/559/visual-studio-and-net-tip-8-get-inner-most-exception.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/559/visual-studio-and-net-tip-8-get-inner-most-exception.aspx]]></link><description><![CDATA[We all know exceptions get propagated from the last caller to the main caller.  For instance let’s say from your static void main method you are calling “SomeMethod” and he in turn is calling “SomeMethod1”.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/559/visual-studio-and-net-tip-8-get-inner-most-exception.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 15 Nov 2011 08:59:01 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 7:- Drag and drop code from tool box]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1176/visual-studio-and-net-tip-7-drag-and-drop-code-from-tool-box.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1176/visual-studio-and-net-tip-7-drag-and-drop-code-from-tool-box.aspx]]></link><description><![CDATA[As a developer you always need some common codes again and again. Rather than writing those common codes from scratch you would like to get them easily from some handy place.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1176/visual-studio-and-net-tip-7-drag-and-drop-code-from-tool-box.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 15 Nov 2011 08:58:42 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 6:- Skip debugging for certain lines of code]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/581/visual-studio-and-net-tip-6-skip-debugging-for-certain-lines-of-code.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/581/visual-studio-and-net-tip-6-skip-debugging-for-certain-lines-of-code.aspx]]></link><description><![CDATA[While debugging you often want to skip debugging on certain lines of code. For instance in the below code you have set the debug point to the first line, you would like to skip the in between lines and jump directly to “console.writeline” step.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/581/visual-studio-and-net-tip-6-skip-debugging-for-certain-lines-of-code.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 08 May 2012 14:31:46 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 5:- Encapsulate public properties with a single click]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/387/visual-studio-and-net-tip-5-encapsulate-public-properties-with-a-single-click.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/387/visual-studio-and-net-tip-5-encapsulate-public-properties-with-a-single-click.aspx]]></link><description><![CDATA[Many times due to project pressure and lazy attitude you violate encapsulation and create public variables for classes as shown below. Even though your inner heart knows that the best practice is to create set and get property function but your lazy attitude overrules it.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/387/visual-studio-and-net-tip-5-encapsulate-public-properties-with-a-single-click.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 08 May 2012 14:32:27 GMT</pubDate></item><item><title><![CDATA[Visual studio and .NET tip 4:- Task reminders using visual studio]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1235/visual-studio-and-net-tip-4-task-reminders-using-visual-studio.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1235/visual-studio-and-net-tip-4-task-reminders-using-visual-studio.aspx]]></link><description><![CDATA[Many times we write comments in code to remind about certain  tasks to be performed later and then  we forget about the same as the comments gets lost in those million lines code.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1235/visual-studio-and-net-tip-4-task-reminders-using-visual-studio.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 08 May 2012 14:32:46 GMT</pubDate></item><item><title><![CDATA[General .NET tip 3: How to easily get connection strings?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/996/general-net-tip-3-how-to-easily-get-connection-strings.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/996/general-net-tip-3-how-to-easily-get-connection-strings.aspx]]></link><description><![CDATA[Now many times as a .NET developer we need connection strings to connect to databases. Connection string are long and cryptic and very difficult to remember.  In this tip we will see a easy way of getting connection strings.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/996/general-net-tip-3-how-to-easily-get-connection-strings.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 08 May 2012 14:33:32 GMT</pubDate></item><item><title><![CDATA[Visual studio tip 2: Create methods from code snippets]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1229/visual-studio-tip-2-create-methods-from-code-snippets.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1229/visual-studio-tip-2-create-methods-from-code-snippets.aspx]]></link><description><![CDATA[In this section we will see a very interesting and useful trick of visual studio called  the extract method.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1229/visual-studio-tip-2-create-methods-from-code-snippets.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 08 May 2012 14:33:11 GMT</pubDate></item><item><title><![CDATA[SQL Server - block execution of a sql command for a certain period of time]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1016/sql-server--block-execution-of-a-sql-command-for-a-certain-period-of-time.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1016/sql-server--block-execution-of-a-sql-command-for-a-certain-period-of-time.aspx]]></link><description><![CDATA[SQL Server provides you the WAITFOR DELAY clause that helps you to delay the execution of a command for certain amount of time.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1016/sql-server--block-execution-of-a-sql-command-for-a-certain-period-of-time.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 27 Oct 2011 13:52:01 GMT</pubDate></item><item><title><![CDATA[SQL Server - Quick way to find the rowcount in a table.]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/222/sql-server--quick-way-to-find-the-rowcount-in-a-table.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/222/sql-server--quick-way-to-find-the-rowcount-in-a-table.aspx]]></link><description><![CDATA[Use the Sysindexes table to find the number of rows in a table.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/222/sql-server--quick-way-to-find-the-rowcount-in-a-table.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 27 Oct 2011 11:56:09 GMT</pubDate></item><item><title><![CDATA[ASP.Net MVC - Use the AdditionalMetadata attribute to pass additional data to the views.]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1514/aspnet-mvc--use-the-additionalmetadata-attribute-to-pass-additional-data-to-the-views.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1514/aspnet-mvc--use-the-additionalmetadata-attribute-to-pass-additional-data-to-the-views.aspx]]></link><description><![CDATA[The [AdditionalMetadata] attribute is a powerful feature of MVC 3. You can make use of this attribute and pass additional data that will help you make judgements in scenarios where you need to display/take decisions conditionally. The following example makes it more clear.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1514/aspnet-mvc--use-the-additionalmetadata-attribute-to-pass-additional-data-to-the-views.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 27 Oct 2011 11:56:56 GMT</pubDate></item><item><title><![CDATA[ASP.Net MVC- How to change master page for a view at runtime?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1487/aspnet-mvc-how-to-change-master-page-for-a-view-at-runtime.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1487/aspnet-mvc-how-to-change-master-page-for-a-view-at-runtime.aspx]]></link><description><![CDATA[You can pass the master page name when you return the ViewResult from the Controller's Action.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1487/aspnet-mvc-how-to-change-master-page-for-a-view-at-runtime.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 27 Oct 2011 11:57:30 GMT</pubDate></item><item><title><![CDATA[ASP.Net MVC - How do I apply a CSS class to html.ActionLink in MVC?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/970/aspnet-mvc--how-do-i-apply-a-css-class-to-htmlactionlink-in-mvc.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/970/aspnet-mvc--how-do-i-apply-a-css-class-to-htmlactionlink-in-mvc.aspx]]></link><description><![CDATA[Use the ActionLink overloaded method that takes the html attributes that would be applied to the generated link.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/970/aspnet-mvc--how-do-i-apply-a-css-class-to-htmlactionlink-in-mvc.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 27 Oct 2011 10:20:11 GMT</pubDate></item><item><title><![CDATA[Visual studio tip 1 : How to select code in a rectangular fashion?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1297/visual-studio-tip-1--how-to-select-code-in-a-rectangular-fashion.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1297/visual-studio-tip-1--how-to-select-code-in-a-rectangular-fashion.aspx]]></link><description><![CDATA[When we select source code in visual studio it selects the complete source code , but what if we want to select the code in a rectangular manner?&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1297/visual-studio-tip-1--how-to-select-code-in-a-rectangular-fashion.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 15 Nov 2011 08:45:29 GMT</pubDate></item><item><title><![CDATA[Setting the Segment Terminator to Carriage Return without any charcter in EDI]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1584/setting-the-segment-terminator-to-carriage-return-without-any-charcter-in-edi.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1584/setting-the-segment-terminator-to-carriage-return-without-any-charcter-in-edi.aspx]]></link><description><![CDATA[This explains the procedure to set the Carriage Return Line Feed as the Segment Terminator in EDI.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1584/setting-the-segment-terminator-to-carriage-return-without-any-charcter-in-edi.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 22 Oct 2011 10:40:12 GMT</pubDate></item><item><title><![CDATA[Replace some text matches with url link with text as anchor text]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1429/replace-some-text-matches-with-url-link-with-text-as-anchor-text.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1429/replace-some-text-matches-with-url-link-with-text-as-anchor-text.aspx]]></link><description><![CDATA[Do you want to replace text on your web site with a link to a url, but don't want to do it everytime?  An application of this could be everytime someone's name appears to replace it with a link to their bio page.  To take this to the next level the attached code accepts a parameter to determine the chance that a particular match has of getting replaced, so it is possible to only replace 80% of the matches.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1429/replace-some-text-matches-with-url-link-with-text-as-anchor-text.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 06 Oct 2011 22:29:05 GMT</pubDate></item><item><title><![CDATA[JQuery - How do I turn off/disable animations?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1286/jquery--how-do-i-turn-offdisable-animations.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1286/jquery--how-do-i-turn-offdisable-animations.aspx]]></link><description><![CDATA[JQuery animations can be turned off/disable using the fx.off property.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1286/jquery--how-do-i-turn-offdisable-animations.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 30 Sep 2011 09:43:30 GMT</pubDate></item><item><title><![CDATA[JQuery - Get the selected item's text in a dropdown]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1394/jquery--get-the-selected-items-text-in-a-dropdown.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1394/jquery--get-the-selected-items-text-in-a-dropdown.aspx]]></link><description><![CDATA[Use the ":selected" modifier on the option element.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1394/jquery--get-the-selected-items-text-in-a-dropdown.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 27 Sep 2011 11:19:07 GMT</pubDate></item><item><title><![CDATA[Method OverLoading in WCF, Exposing Overloded methods from wcfservice]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/987/method-overloading-in-wcf-exposing-overloded-methods-from-wcfservice.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/987/method-overloading-in-wcf-exposing-overloded-methods-from-wcfservice.aspx]]></link><description><![CDATA[How to Expose a overloaded mehod from a wcf service Contract.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/987/method-overloading-in-wcf-exposing-overloded-methods-from-wcfservice.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 21 Sep 2011 15:53:31 GMT</pubDate></item><item><title><![CDATA[Silverlight InvokeCommandAction Bind Button DataContext To UserControl DataContext]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/680/silverlight-invokecommandaction-bind-button-datacontext-to-usercontrol-datacontext.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/680/silverlight-invokecommandaction-bind-button-datacontext-to-usercontrol-datacontext.aspx]]></link><description><![CDATA[In Silverlight 4.0, you often times you need to bind to an ObservableCollection<T> in your ListBox, DataGrid, etc. but also bind to events/commands using InvokeCommandAction that exist in your ViewModel.  It gives you a way to send the current record in the list as a parameter to method fired from your Button/Hyperlinkbutton click event.  The following example shows how.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/680/silverlight-invokecommandaction-bind-button-datacontext-to-usercontrol-datacontext.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 15 Oct 2011 10:19:59 GMT</pubDate></item><item><title><![CDATA[LINQ Take & Skip]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/220/linq-take--skip.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/220/linq-take--skip.aspx]]></link><description><![CDATA[In some cases we want to Skip few items and take the remaining like in a ListLINQ offers a greate way using Take() and Skip() Methods&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/220/linq-take--skip.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 19 Sep 2011 12:33:22 GMT</pubDate></item><item><title><![CDATA[JQuery DropDownList Get or set the selected item]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/637/jquery-dropdownlist-get-or-set-the-selected-item.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/637/jquery-dropdownlist-get-or-set-the-selected-item.aspx]]></link><description><![CDATA[The below sample explains how we can set or get the selected item for dropdownlist using JQuery.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/637/jquery-dropdownlist-get-or-set-the-selected-item.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 19 Sep 2011 11:26:00 GMT</pubDate></item><item><title><![CDATA[LINQ OrderBY]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1721/linq-orderby.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1721/linq-orderby.aspx]]></link><description><![CDATA[LINQ offers a greate way to minimize your code.  Here I will describe a small example of OrderBy using LINQ to sort a DropDownList.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1721/linq-orderby.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 18 Sep 2011 23:04:41 GMT</pubDate></item><item><title><![CDATA[Find a anchor tag inside a div using Jquery using Href attribute or Innerhtml]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/909/find-a-anchor-tag-inside-a-div-using-jquery-using-href-attribute-or-innerhtml.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/909/find-a-anchor-tag-inside-a-div-using-jquery-using-href-attribute-or-innerhtml.aspx]]></link><description><![CDATA[As we know the atg line of Jquery Is Write Less Do More, and it does the reflect the same with it ultimate by using little code we can perform the same task which previously we used to write with more lines.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/909/find-a-anchor-tag-inside-a-div-using-jquery-using-href-attribute-or-innerhtml.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 16 Sep 2011 08:49:29 GMT</pubDate></item><item><title><![CDATA[Downloading the Windows 8 Developer Previews]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1058/downloading-the-windows-8-developer-previews.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1058/downloading-the-windows-8-developer-previews.aspx]]></link><description><![CDATA[Downloading the Windows 8 developer preview. If you have an MSDN subscription, there are also Windows Server developer previews.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1058/downloading-the-windows-8-developer-previews.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 19 Sep 2011 22:37:01 GMT</pubDate></item><item><title><![CDATA[How to add Exceptions to the Visual Studio main Debug Menu.]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1316/how-to-add-exceptions-to-the-visual-studio-main-debug-menu.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1316/how-to-add-exceptions-to-the-visual-studio-main-debug-menu.aspx]]></link><description><![CDATA[Recently I was working with another developer and I wanted to show him how to set his Exceptions to break on Command Language Runtime exceptions when they were thrown.  This allows you to break into the debugger at the exact point where an exception is thrown rather than someplace up the call stack, and enables you to do real "pinpoint" exception debugging. However, to my surprise, this person did not have the "Exceptions" option in Visual Studio's top "Debug" menu item.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1316/how-to-add-exceptions-to-the-visual-studio-main-debug-menu.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 27 Aug 2011 17:38:50 GMT</pubDate></item><item><title><![CDATA[Windows 7 licensed copy turns into an evaluation copy.]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1167/windows-7-licensed-copy-turns-into-an-evaluation-copy.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1167/windows-7-licensed-copy-turns-into-an-evaluation-copy.aspx]]></link><description><![CDATA[If you use Windows update, and choose to install all updates automatically, then a copy of SP1 RC may be installed. And your licensed copy may turn into an evaluation copy.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1167/windows-7-licensed-copy-turns-into-an-evaluation-copy.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 23 Aug 2011 17:42:54 GMT</pubDate></item><item><title><![CDATA[How to prevent Databinding Leaks?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1371/how-to-prevent-databinding-leaks.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1371/how-to-prevent-databinding-leaks.aspx]]></link><description><![CDATA[Databinding leaks can happen when you use a property in the Path which is not a dependency property and a class that does not implement INotifyPropertyChanged event.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1371/how-to-prevent-databinding-leaks.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 01 Sep 2011 13:20:59 GMT</pubDate></item><item><title><![CDATA[ASP.Net - Global.asax Application_Start event does not fire]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/618/aspnet--globalasax-applicationstart-event-does-not-fire.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/618/aspnet--globalasax-applicationstart-event-does-not-fire.aspx]]></link><description><![CDATA[There are many threads on the internet that tell you to play with Session or any other web.config values to get Global.asax events working. If they do not work, then this tip is for you.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/618/aspnet--globalasax-applicationstart-event-does-not-fire.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 13 Aug 2011 18:29:15 GMT</pubDate></item><item><title><![CDATA[ASP.NET Master Page Controls and Accessing From a Content Page]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1222/aspnet-master-page-controls-and-accessing-from-a-content-page.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1222/aspnet-master-page-controls-and-accessing-from-a-content-page.aspx]]></link><description><![CDATA[The sample below describes how we can access the  masterPage controls from the content page.  Suppose we have a TextBox in the master page and we need to set the text to in the click event of Button which is in Content page.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1222/aspnet-master-page-controls-and-accessing-from-a-content-page.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 08 Aug 2011 08:40:59 GMT</pubDate></item><item><title><![CDATA[Difference between IEnumerable and IQueryable]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/289/difference-between-ienumerable-and-iqueryable.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/289/difference-between-ienumerable-and-iqueryable.aspx]]></link><description><![CDATA[Here is the small sample that explains the difference between IEnumerable<T> and IQueryable<T>.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/289/difference-between-ienumerable-and-iqueryable.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 01 Aug 2011 08:46:39 GMT</pubDate></item><item><title><![CDATA[How to Add Tooltips to an ASP.NET Dropdownlist]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/192/how-to-add-tooltips-to-an-aspnet-dropdownlist.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/192/how-to-add-tooltips-to-an-aspnet-dropdownlist.aspx]]></link><description><![CDATA[A DropdownList can be enhanced with Tooltips for its items including the selected item.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/192/how-to-add-tooltips-to-an-aspnet-dropdownlist.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 30 Jul 2011 12:33:21 GMT</pubDate></item><item><title><![CDATA[Event Handling in Repeater Control]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1008/event-handling-in-repeater-control.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1008/event-handling-in-repeater-control.aspx]]></link><description><![CDATA[When controls are placed in Repeater Control we have to write OnItemCommand () Event for RepeaterControl and determine which control has raised the events. Events are bubbled between the controls that is if as button is placed in Repeater and the Repeater has OnItemCommand () Event and also the button has Click Event then both the events will be fired and so it is always safe to write events only for Top-Level Controls&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1008/event-handling-in-repeater-control.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 03 Aug 2011 11:11:54 GMT</pubDate></item><item><title><![CDATA[MessageQueue StrConv Conversion To C#]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/590/messagequeue-strconv-conversion-to-c.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/590/messagequeue-strconv-conversion-to-c.aspx]]></link><description><![CDATA[If you are looking for a workaround concerning VB's StrConv and converting it to C# for use with message queues, the code below is what you need.  This is also helpful for sending byte arrays to a message queue.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/590/messagequeue-strconv-conversion-to-c.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 27 Jul 2011 10:17:05 GMT</pubDate></item><item><title><![CDATA[Using Delegate For Event Handling]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1353/using-delegate-for-event-handling.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1353/using-delegate-for-event-handling.aspx]]></link><description><![CDATA[One of the main uses of delegates is for handling the events&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1353/using-delegate-for-event-handling.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 27 Jul 2011 07:45:16 GMT</pubDate></item><item><title><![CDATA[Using the c# runtime compiler to evaluate simple maths formulas]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1503/using-the-c-runtime-compiler-to-evaluate-simple-maths-formulas.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1503/using-the-c-runtime-compiler-to-evaluate-simple-maths-formulas.aspx]]></link><description><![CDATA[A simple class to demonstrate the usage of the c# runtime compiler and also a simple reflection execution of a static method&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1503/using-the-c-runtime-compiler-to-evaluate-simple-maths-formulas.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 26 Jul 2011 10:30:57 GMT</pubDate></item><item><title><![CDATA[What is the difference between Stored Procedure and User defined funtion]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/718/what-is-the-difference-between-stored-procedure-and-user-defined-funtion.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/718/what-is-the-difference-between-stored-procedure-and-user-defined-funtion.aspx]]></link><description><![CDATA[The user defined function provides a mechanism for extending the functionality of the database server by adding a function that can be evaluated in SQL statements. A stored procedure is a subroutine available to applications accessing a relational database system&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/718/what-is-the-difference-between-stored-procedure-and-user-defined-funtion.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 03 Aug 2011 11:12:58 GMT</pubDate></item><item><title><![CDATA[Numerical root finding using Secant Method in c#]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/692/numerical-root-finding-using-secant-method-in-c.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/692/numerical-root-finding-using-secant-method-in-c.aspx]]></link><description><![CDATA[This class provides a simple method to find the roots of a formula, similar to the GOTO function in Excel&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/692/numerical-root-finding-using-secant-method-in-c.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 23 Jul 2011 16:20:45 GMT</pubDate></item><item><title><![CDATA[Easy Read Data With Row Coloring:Coding]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/516/easy-read-data-with-row-coloringcoding.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/516/easy-read-data-with-row-coloringcoding.aspx]]></link><description><![CDATA[Very often mass data imported into excel spreadsheet for analysis or report to be presented, make us blur with similar information between one row and another. One way to make thing better is coloring the row with different color, but what shall we do with thousands of records? seem to be impossible with manual one. This comes to this piece of coding "Easy Read Data With Row Coloring", Hope this helps all happier with mass data analysis and save your time from tiring and boring daily manual task&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/516/easy-read-data-with-row-coloringcoding.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 22 Jul 2011 12:31:15 GMT</pubDate></item><item><title><![CDATA[Excel 2010- Enable the Developer toolbar]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/224/excel-2010-enable-the-developer-toolbar.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/224/excel-2010-enable-the-developer-toolbar.aspx]]></link><description><![CDATA[The developer toolbar is not enabled by default. Go to File - Options - Customize Ribbon.In the right side, you will find the "Developer tools" option. Check the box. and click OK. It will now appear.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/224/excel-2010-enable-the-developer-toolbar.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 19 Jul 2011 13:57:05 GMT</pubDate></item><item><title><![CDATA[C# - How do I convert an image from one format to other?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/605/c--how-do-i-convert-an-image-from-one-format-to-other.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/605/c--how-do-i-convert-an-image-from-one-format-to-other.aspx]]></link><description><![CDATA[Use the Image class from the System.Drawing Namespace.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/605/c--how-do-i-convert-an-image-from-one-format-to-other.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 19 Jul 2011 13:56:20 GMT</pubDate></item><item><title><![CDATA[Excel automatically add trend line to your chart]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/45/excel-automatically-add-trend-line-to-your-chart.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/45/excel-automatically-add-trend-line-to-your-chart.aspx]]></link><description><![CDATA[Excel chart always be able to format or chage any properties then automatically applied to all series in that selected chart, but it is not easy like that to add trend line to the chart, you need to do series by series of chart. Here is the code help you to add trend line in just one click...&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/45/excel-automatically-add-trend-line-to-your-chart.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 17 Jul 2011 21:36:33 GMT</pubDate></item><item><title><![CDATA[LINQ Join Operation Sample]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1506/linq-join-operation-sample.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1506/linq-join-operation-sample.aspx]]></link><description><![CDATA[For the sample i have taken theis generic list of type Player and Player_Data , which i will use this Lists as collections and perform the joins operations  using Linq.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1506/linq-join-operation-sample.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 04 Aug 2011 09:40:38 GMT</pubDate></item><item><title><![CDATA[replaceAt() in javascript ,]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/77/replaceat-in-javascript-.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/77/replaceat-in-javascript-.aspx]]></link><description><![CDATA[The Sample shows  a Functions to repalce a character in the string .&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/77/replaceat-in-javascript-.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 12 Jul 2011 07:42:04 GMT</pubDate></item><item><title><![CDATA[Sum the number of times a digit appears in a sequence]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/136/sum-the-number-of-times-a-digit-appears-in-a-sequence.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/136/sum-the-number-of-times-a-digit-appears-in-a-sequence.aspx]]></link><description><![CDATA[This was a response to my Google+ LINQ Quiz:Write a LINQ query that provides the sum of the number of times "1" is found in the sequence 1...100.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/136/sum-the-number-of-times-a-digit-appears-in-a-sequence.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 08 Jul 2011 18:48:12 GMT</pubDate></item><item><title><![CDATA[ASP.Net MVC - How to validate the route values? Can I control the routes using the type of the values?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1077/aspnet-mvc--how-to-validate-the-route-values-can-i-control-the-routes-using-the-type-of-the-values.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1077/aspnet-mvc--how-to-validate-the-route-values-can-i-control-the-routes-using-the-type-of-the-values.aspx]]></link><description><![CDATA[One of the best ways is to use the RouteConstraint to validate the route values and then choose a route to controller. Route values that hold values of integer is the best example. If the route value is passed as string which cannot be converted to an Integer, we suffer with run-time and unhandled exceptions on our code.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1077/aspnet-mvc--how-to-validate-the-route-values-can-i-control-the-routes-using-the-type-of-the-values.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 07 Jul 2011 06:52:12 GMT</pubDate></item><item><title><![CDATA[jQuery - How do I Load a URL in a div]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/693/jquery--how-do-i-load-a-url-in-a-div.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/693/jquery--how-do-i-load-a-url-in-a-div.aspx]]></link><description><![CDATA[Use the Load method to load the html from a url into an element using jQuery. You will have to ensure that the url belongs to the same domain.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/693/jquery--how-do-i-load-a-url-in-a-div.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 07 Jul 2011 06:51:25 GMT</pubDate></item><item><title><![CDATA[How to Determine if an Uploaded image is valid]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1116/how-to-determine-if-an-uploaded-image-is-valid.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1116/how-to-determine-if-an-uploaded-image-is-valid.aspx]]></link><description><![CDATA[Hackers often change the content type of their uploads, which could be malicious files. Here is how to guard against this.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1116/how-to-determine-if-an-uploaded-image-is-valid.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 02 Jul 2011 12:40:46 GMT</pubDate></item><item><title><![CDATA[C# - How do I properly clean com objects?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1533/c--how-do-i-properly-clean-com-objects.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1533/c--how-do-i-properly-clean-com-objects.aspx]]></link><description><![CDATA[The ReleaseComObject method from the Marshal class helps you interact with unmanaged code.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1533/c--how-do-i-properly-clean-com-objects.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 28 Jun 2011 08:20:09 GMT</pubDate></item><item><title><![CDATA[Sharepoint-Get The Current User Name]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/566/sharepointget-the-current-user-name.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/566/sharepointget-the-current-user-name.aspx]]></link><description><![CDATA[Using This Code You Can Get The Current User Name...&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/566/sharepointget-the-current-user-name.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 30 Jun 2011 08:00:19 GMT</pubDate></item><item><title><![CDATA[Save Image In Your Specific Format]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1136/save-image-in-your-specific-format.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1136/save-image-in-your-specific-format.aspx]]></link><description><![CDATA[You Can Save Your Image Into Particular User Format Like Save As...&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1136/save-image-in-your-specific-format.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 30 Jun 2011 07:59:28 GMT</pubDate></item><item><title><![CDATA[Build Web Browser Using Web Control in WPF Using C#]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1023/build-web-browser-using-web-control-in-wpf-using-c.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1023/build-web-browser-using-web-control-in-wpf-using-c.aspx]]></link><description><![CDATA[It Will Show You That How you Can Create An Application Like Web Browser & In That You Can Open Your Websites & Also Go Back & Go Forward Are There.....&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1023/build-web-browser-using-web-control-in-wpf-using-c.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 30 Jun 2011 08:01:34 GMT</pubDate></item><item><title><![CDATA[Convert IEnumerable to DataTable]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/702/convert-ienumerable-to-datatable.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/702/convert-ienumerable-to-datatable.aspx]]></link><description><![CDATA[One of the problems with converting an IEnumerable to DataTable is the slowness of the reflection required. Here is a better way.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/702/convert-ienumerable-to-datatable.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 26 Jun 2011 12:54:43 GMT</pubDate></item><item><title><![CDATA[How to Disable ASP.NET Submit button after first Submit]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1193/how-to-disable-aspnet-submit-button-after-first-submit.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1193/how-to-disable-aspnet-submit-button-after-first-submit.aspx]]></link><description><![CDATA[If you have a form (for payment, etc) and you want to prevent multiple form submissions there are several techniques you can use.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1193/how-to-disable-aspnet-submit-button-after-first-submit.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 17 Jun 2011 13:57:14 GMT</pubDate></item><item><title><![CDATA[Cannot access Session, Page_Load or other methods in a page with Page Methods]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1053/cannot-access-session-pageload-or-other-methods-in-a-page-with-page-methods.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1053/cannot-access-session-pageload-or-other-methods-in-a-page-with-page-methods.aspx]]></link><description><![CDATA[There are a lot of forum posts - both here and elsewhere - asking why you cannot access ASP.NET Page class lifecycle methods. The explanation is simple.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1053/cannot-access-session-pageload-or-other-methods-in-a-page-with-page-methods.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 16 Jun 2011 17:19:19 GMT</pubDate></item><item><title><![CDATA[C# - Regular expression for validating Hex Color Codes.]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1304/c--regular-expression-for-validating-hex-color-codes.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1304/c--regular-expression-for-validating-hex-color-codes.aspx]]></link><description><![CDATA[Use the regex below for validating hexadecimal color code. It ensures that the value starts with a # and has valid 3/6 alphanumeric  codes.  You can use the same script in Javascript as well.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1304/c--regular-expression-for-validating-hex-color-codes.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 16 Jun 2011 08:11:44 GMT</pubDate></item><item><title><![CDATA[Windows 7 - Restore Previous versions of file or folder]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1192/windows-7--restore-previous-versions-of-file-or-folder.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1192/windows-7--restore-previous-versions-of-file-or-folder.aspx]]></link><description><![CDATA[Windows 7 has this beautiful feature added, that allows us to restore previous versions of file or folder.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1192/windows-7--restore-previous-versions-of-file-or-folder.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 16 Jun 2011 08:10:47 GMT</pubDate></item><item><title><![CDATA[ASP.NET Server-Side Code Blocks Legend]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/567/aspnet-serverside-code-blocks-legend.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/567/aspnet-serverside-code-blocks-legend.aspx]]></link><description><![CDATA[The following are the different types of ASP.NET server-side code blocks and what they are for.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/567/aspnet-serverside-code-blocks-legend.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 15 Jun 2011 19:55:28 GMT</pubDate></item><item><title><![CDATA[Using LINQ Aggregate Method to concatenate strings to delimited string]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1029/using-linq-aggregate-method-to-concatenate-strings-to-delimited-string.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1029/using-linq-aggregate-method-to-concatenate-strings-to-delimited-string.aspx]]></link><description><![CDATA[The LINQ Aggregate extension method is very powerful. However, there can be performance issues on very large datasets, in which case the use of StringBuilder may be preferable.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1029/using-linq-aggregate-method-to-concatenate-strings-to-delimited-string.aspx" target="_self">read more</a>]]></description><pubDate>Sat, 11 Jun 2011 13:24:40 GMT</pubDate></item><item><title><![CDATA[Visual Studio - Support for HTML 5 Intellisense]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/845/visual-studio--support-for-html-5-intellisense.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/845/visual-studio--support-for-html-5-intellisense.aspx]]></link><description><![CDATA[The tip below shows you how to download and install the add-in which enables intellisense for HTML5 in Visual Studio.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/845/visual-studio--support-for-html-5-intellisense.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 07 Jun 2011 13:30:54 GMT</pubDate></item><item><title><![CDATA[Deserialize object xml string into an object instance]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1881/deserialize-object-xml-string-into-an-object-instance.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1881/deserialize-object-xml-string-into-an-object-instance.aspx]]></link><description><![CDATA[Given xml string that contains a deserialized object. This code will convert this string into the desired object. (Keep in mind that object has to be serializable)&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1881/deserialize-object-xml-string-into-an-object-instance.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 05 Jun 2011 20:04:06 GMT</pubDate></item><item><title><![CDATA[Sort the Childs under Parents in Oracle Hierarchial Queries using siblings]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/780/sort-the-childs-under-parents-in-oracle-hierarchial-queries-using-siblings.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/780/sort-the-childs-under-parents-in-oracle-hierarchial-queries-using-siblings.aspx]]></link><description><![CDATA[This explains how to sort the child records under the parent records by using order siblings by clause&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/780/sort-the-childs-under-parents-in-oracle-hierarchial-queries-using-siblings.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 03 Jun 2011 13:34:45 GMT</pubDate></item><item><title><![CDATA[Retrieve content data in xml childnodes]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1700/retrieve-content-data-in-xml-childnodes.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1700/retrieve-content-data-in-xml-childnodes.aspx]]></link><description><![CDATA[This is to show you on how to retrieve content data in the childnodes of xml and show it in web page using response.write.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1700/retrieve-content-data-in-xml-childnodes.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 03 Jun 2011 16:26:35 GMT</pubDate></item><item><title><![CDATA[Add html tags in XML]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/729/add-html-tags-in-xml.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/729/add-html-tags-in-xml.aspx]]></link><description><![CDATA[What if we use xml as our database? And sometimes we also want to save the data as html or the whole html source code. We can do this by using character data or simply CDATA. The format for this is "&lt;![CDATA[ ]]&gt;" . Here's a simple snippets on how to add it in xml.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/729/add-html-tags-in-xml.aspx" target="_self">read more</a>]]></description><pubDate>Fri, 27 May 2011 09:31:17 GMT</pubDate></item><item><title><![CDATA[SQL Server - What data type should I use to store binary data?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1845/sql-server--what-data-type-should-i-use-to-store-binary-data.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1845/sql-server--what-data-type-should-i-use-to-store-binary-data.aspx]]></link><description><![CDATA[Use Binary or VarBinary fields to store fixed or variable length. These were available in 2005 and 2008 versions only.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1845/sql-server--what-data-type-should-i-use-to-store-binary-data.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 24 May 2011 23:32:20 GMT</pubDate></item><item><title><![CDATA[SQL Server - Change the datatype of a Timestamp column.]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/1325/sql-server--change-the-datatype-of-a-timestamp-column.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/1325/sql-server--change-the-datatype-of-a-timestamp-column.aspx]]></link><description><![CDATA[There is no workaround to change the datatype of a Timestamp column. You will have to drop the column and recreate it.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/1325/sql-server--change-the-datatype-of-a-timestamp-column.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 24 May 2011 23:32:48 GMT</pubDate></item><item><title><![CDATA[C# - How do I access command line arguments sent to my application from a non-main method?]]></title><guid isPermaLink="true"><![CDATA[http://www.nullskull.com/faq/343/c--how-do-i-access-command-line-arguments-sent-to-my-application-from-a-nonmain-method.aspx]]></guid><link><![CDATA[http://www.nullskull.com/faq/343/c--how-do-i-access-command-line-arguments-sent-to-my-application-from-a-nonmain-method.aspx]]></link><description><![CDATA[Use the GetCommandLineArgs static method of the Environment class. It returns an array of the arguments.&nbsp;&nbsp;<a href="http://www.nullskull.com/faq/343/c--how-do-i-access-command-line-arguments-sent-to-my-application-from-a-nonmain-method.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 24 May 2011 23:33:19 GMT</pubDate></item></channel></rss>