﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>WebDevVote.com</title>
    <description>Lastest links from WebDevVote.com</description>
    <link>http://webdevvote.com/</link>
    <language>vi-VN</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>WebDevVote.com - </generator>
    <ttl>30</ttl>
    <item>
      <title>Migration of ASP.NET app from IIS6 to IIS7 (7.5)</title>
      <description>For many of us familiar problem. You developing applications under IIS6 and you're about to move them to IIS7. In previous version of IIS was enough to copy over your files, create app pool and site. IIS7 (7.5) is different in this point. I've guide you through some problems you can run into. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fblog.dczweb.net%2fpost%2fMigration-of-ASPNET-app-from-IIS6-to-IIS7-(75).aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.dczweb.net%2fpost%2fMigration-of-ASPNET-app-from-IIS6-to-IIS7-(75).aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Migration_of_ASP_NET_app_from_IIS6_to_IIS7_7_5</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Migration_of_ASP_NET_app_from_IIS6_to_IIS7_7_5</guid>
      <pubDate>Thu, 04 Mar 2010 07:28:48 GMT</pubDate>
    </item>
    <item>
      <title>Best jQuery plugins for working with Twitter</title>
      <description>Today we presents collection of jQuery plugins for working with Twitter. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.ajaxline.com%2fbest-jquery-plugins-for-working-with-twitter"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ajaxline.com%2fbest-jquery-plugins-for-working-with-twitter" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/Jquery/Best_jQuery_plugins_for_working_with_Twitter</link>
      <guid isPermaLink="true">http://webdevvote.com/Jquery/Best_jQuery_plugins_for_working_with_Twitter</guid>
      <pubDate>Thu, 04 Mar 2010 07:27:11 GMT</pubDate>
    </item>
    <item>
      <title>Top 15 SEO Extensions For Your Joomla CMS</title>
      <description>Joomla is a powerful CMS, used by over 20 of the world’s 10,000 most popular websites. With Joomla on your side, you’re more than capable of building the best site around, but what use is a great site if nobody’s going to see it? It’s common knowledge that Joomla lets itself down when it comes to search engine optimization (SEO). Limited and slow, there’s precious little you can do, SEO-wise, in Joomla core. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.webdesignbooth.com%2ftop-15-seo-extensions-for-your-joomla-cms%2f"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.webdesignbooth.com%2ftop-15-seo-extensions-for-your-joomla-cms%2f" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/open_source/Top_15_SEO_Extensions_For_Your_Joomla_CMS</link>
      <guid isPermaLink="true">http://webdevvote.com/open_source/Top_15_SEO_Extensions_For_Your_Joomla_CMS</guid>
      <pubDate>Thu, 04 Mar 2010 07:27:04 GMT</pubDate>
    </item>
    <item>
      <title>Web 2.0 | Did you know.. How to create CSV or Text file in C#?</title>
      <description>Here is our C# code to generate CSV file. 1: StringBuilder sb = new StringBuilder(); 2:string strDelimiter = ","; 3:  4:foreach (DataRow dr in table.Rows) 5: { 6:string[] arr = Array.ConvertAll(dr.ItemArray, new Converter &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2010%2f02%2f23%2fDid-you-knowefbfbd-How-to-create-CSV-or-Text-file-in-C.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2010%2f02%2f23%2fDid-you-knowefbfbd-How-to-create-CSV-or-Text-file-in-C.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Web_2_0_Did_you_know_How_to_create_CSV_or_Text_file_in_C</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Web_2_0_Did_you_know_How_to_create_CSV_or_Text_file_in_C</guid>
      <pubDate>Thu, 25 Feb 2010 07:37:35 GMT</pubDate>
    </item>
    <item>
      <title>Web 2.0 | Did you know.. How to generate Excel 2007 file in C#?</title>
      <description>You can do it using ExcelPackagethat provides server-side generation of Excel 2007 spreadsheets. You can download it from codeplex.  Here is sample code to generate XLSX file using ExcelPackage. 1: FileInfo XLSXFile = new FileInfo(XLSXFileName); 2:using (ExcelPackage xlPackage = new ExcelPackage(XLSXFile)) 3: { 4: ExcelWorksheet worksheet = xlPackage.Workbook.Worksheets.Add("Sheet1"); 5:  6:int row = 1; 7:foreach (DataRow dr in dataTable.Rows) 8: { 9:int col =... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2010%2f02%2f24%2fDid-you-knowefbfbd-How-to-generate-Excel-2007-file-in-C.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2010%2f02%2f24%2fDid-you-knowefbfbd-How-to-generate-Excel-2007-file-in-C.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Web_2_0_Did_you_know_How_to_generate_Excel_2007_file_in_C</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Web_2_0_Did_you_know_How_to_generate_Excel_2007_file_in_C</guid>
      <pubDate>Thu, 25 Feb 2010 07:37:29 GMT</pubDate>
    </item>
    <item>
      <title>Photoshop tutorial. Chinese cookie</title>
      <description>In this article we will show you how to draw Chinese cookies in Photoshop. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.ajaxline.com%2fchinese-cookies"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ajaxline.com%2fchinese-cookies" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/WebDesign/Photoshop_tutorial_Chinese_cookie</link>
      <guid isPermaLink="true">http://webdevvote.com/WebDesign/Photoshop_tutorial_Chinese_cookie</guid>
      <pubDate>Thu, 11 Feb 2010 03:56:50 GMT</pubDate>
    </item>
    <item>
      <title>Web 2.0 | MS Chart Controls to PDF with iTextSharp using XML Template</title>
      <description>In this article, i will examined how to build reports using ItextSharp PDF controland Ms Chart controlsusing XML template. The Xml template give us freedom to change the contents without having to recompile and deploy the application again. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2ffairnet.com%2fpost%2f2010%2f02%2f10%2fMS-Chart-Controls-to-PDF-with-iTextSharp-using-XML-Template.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ffairnet.com%2fpost%2f2010%2f02%2f10%2fMS-Chart-Controls-to-PDF-with-iTextSharp-using-XML-Template.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Web_2_0_MS_Chart_Controls_to_PDF_with_iTextSharp_using_XML_Template</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Web_2_0_MS_Chart_Controls_to_PDF_with_iTextSharp_using_XML_Template</guid>
      <pubDate>Thu, 11 Feb 2010 03:56:41 GMT</pubDate>
    </item>
    <item>
      <title>Quick Tip: JavaScript Event Delegation in 4 Minutes</title>
      <description>Event delegation can be a confusing topic for those who are unfamiliar with the concept. But, luckily, it's really simple. In this quick tip video tutorial, I'll demonstrate the concept in just under four minutes. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fnet.tutsplus.com%2fvideos%2fscreencasts%2fquick-tip-javascript-event-delegation-in-4-minutes%2f"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnet.tutsplus.com%2fvideos%2fscreencasts%2fquick-tip-javascript-event-delegation-in-4-minutes%2f" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/Javascript/Quick_Tip_JavaScript_Event_Delegation_in_4_Minutes</link>
      <guid isPermaLink="true">http://webdevvote.com/Javascript/Quick_Tip_JavaScript_Event_Delegation_in_4_Minutes</guid>
      <pubDate>Fri, 05 Feb 2010 06:17:17 GMT</pubDate>
    </item>
    <item>
      <title>Wrting HTML Helpers that 'auto-close' when used in a 'using' statement</title>
      <description>How to create your own html helpers that auto close when used in a using statement.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.inflecto.co.uk%2fInflecto-Blog%2fpost%2f2010%2f02%2f04%2fthe-using-statement-and-auto-closing-html-helpers.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.inflecto.co.uk%2fInflecto-Blog%2fpost%2f2010%2f02%2f04%2fthe-using-statement-and-auto-closing-html-helpers.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/MVC/Wrting_HTML_Helpers_that_auto_close_when_used_in_a_using_statement</link>
      <guid isPermaLink="true">http://webdevvote.com/MVC/Wrting_HTML_Helpers_that_auto_close_when_used_in_a_using_statement</guid>
      <pubDate>Fri, 05 Feb 2010 06:17:11 GMT</pubDate>
    </item>
    <item>
      <title>Redirect to another page using Html</title>
      <description>If you want to redirect your current user to anther page from aspx page, here is html snippets code which can accomplish this task. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fcode2code.info%2fpost%2f2010%2f01%2f23%2fRedirect-to-another-page-using-Html.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcode2code.info%2fpost%2f2010%2f01%2f23%2fRedirect-to-another-page-using-Html.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Redirect_to_another_page_using_Html</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Redirect_to_another_page_using_Html</guid>
      <pubDate>Fri, 05 Feb 2010 06:17:11 GMT</pubDate>
    </item>
    <item>
      <title>Sql Server Shared Memory Provider error  233 No process is on the othe</title>
      <description>Cannot connect to SQLEXPRESS.
A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fcsharpdotnetfreak.blogspot.com%2f2010%2f01%2fsql-server-shared-memory-provider-error.html"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcsharpdotnetfreak.blogspot.com%2f2010%2f01%2fsql-server-shared-memory-provider-error.html" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/MVC/Sql_Server_Shared_Memory_Provider_error_233_No_process_is_on_the_othe</link>
      <guid isPermaLink="true">http://webdevvote.com/MVC/Sql_Server_Shared_Memory_Provider_error_233_No_process_is_on_the_othe</guid>
      <pubDate>Fri, 22 Jan 2010 01:52:33 GMT</pubDate>
    </item>
    <item>
      <title>Best WordPress plugins - December 2009</title>
      <description>Today we presents collection of best WordPress plugins for December 2009. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.ajaxline.com%2fbest-wordpress-plugins-december-2009"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ajaxline.com%2fbest-wordpress-plugins-december-2009" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/php/Best_WordPress_plugins_December_2009</link>
      <guid isPermaLink="true">http://webdevvote.com/php/Best_WordPress_plugins_December_2009</guid>
      <pubDate>Thu, 21 Jan 2010 10:22:48 GMT</pubDate>
    </item>
    <item>
      <title>Web testing with Selenium and xUnit.net</title>
      <description>In this post I describe how to use Selenium and xUnit.net to create a fully automated in-browser web test for testing the comment functionality on my blog. I provide a list of links to necessary components, such as Selenium, xUnit.net and Java and a step by step guide to creating the test. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fjoelabrahamsson.com%2fentry%2fweb-testing-with-selenium-and-xunitnet"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjoelabrahamsson.com%2fentry%2fweb-testing-with-selenium-and-xunitnet" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/ApplicationsAndTools/Web_testing_with_Selenium_and_xUnit_net</link>
      <guid isPermaLink="true">http://webdevvote.com/ApplicationsAndTools/Web_testing_with_Selenium_and_xUnit_net</guid>
      <pubDate>Thu, 21 Jan 2010 10:22:36 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft SQL Server Migration Assistant for MySQL v1.0 CTP1</title>
      <description>Microsoft has made available for download a free tool designed to streamline the migration of MySQL databases to SQL Server. At the start of this week, the company began offering customers a preview version of Microsoft SQL Server Migration Assistant. According to the software giant, the Community Technology Preview of SQL Server Migration Assistant (SSMA) for MySQL v1.0 integrates seamlessly with not only SQL Server 2005, but also SQL Server 2008 and even SQL Azure. The company underlines that the migration assistant is capable of automating aspects of the migration process to SQL Server 2005 &amp; 2008 and to SQL Azure Database from MySQL.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fcode2code.info%2fpost%2f2010%2f01%2f13%2fMicrosoft-SQL-Server-Migration-Assistant-for-MySQL-v10-CTP1.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcode2code.info%2fpost%2f2010%2f01%2f13%2fMicrosoft-SQL-Server-Migration-Assistant-for-MySQL-v10-CTP1.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/Database/Microsoft_SQL_Server_Migration_Assistant_for_MySQL_v1_0_CTP1</link>
      <guid isPermaLink="true">http://webdevvote.com/Database/Microsoft_SQL_Server_Migration_Assistant_for_MySQL_v1_0_CTP1</guid>
      <pubDate>Fri, 15 Jan 2010 04:08:06 GMT</pubDate>
    </item>
    <item>
      <title>Adventures while building a Silverlight Enterprise application #31</title>
      <description>Today we want to look at an example I ran into where taking the time to think of good names for everything in your code can save the day. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fjvdveen.blogspot.com%2f2010%2f01%2fadventures-while-building-silverlight.html"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjvdveen.blogspot.com%2f2010%2f01%2fadventures-while-building-silverlight.html" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/others/Adventures_while_building_a_Silverlight_Enterprise_application_31</link>
      <guid isPermaLink="true">http://webdevvote.com/others/Adventures_while_building_a_Silverlight_Enterprise_application_31</guid>
      <pubDate>Fri, 15 Jan 2010 04:07:55 GMT</pubDate>
    </item>
    <item>
      <title>Base model for a PHP based website</title>
      <description>Building websites from your own foundation could be a good thing. This is how I start mine. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.thatagency.com%2fdesign-studio-blog%2f2010%2f01%2fbase-model-for-php-based-website%2f"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.thatagency.com%2fdesign-studio-blog%2f2010%2f01%2fbase-model-for-php-based-website%2f" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/php/Base_model_for_a_PHP_based_website</link>
      <guid isPermaLink="true">http://webdevvote.com/php/Base_model_for_a_PHP_based_website</guid>
      <pubDate>Fri, 15 Jan 2010 04:07:41 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET Membership "Remember Me" That Actually Works</title>
      <description>For those of you who have come up against this problem in the past, I have discovered a pretty simple solution on how to make the "Remember Me" feature in the ASP.NET Membership Provider actually work.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fdotnetblogger.com%2fpost%2f2010%2f01%2f11%2fASPNET-Membership-Remember-Me-That-Actually-Works.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetblogger.com%2fpost%2f2010%2f01%2f11%2fASPNET-Membership-Remember-Me-That-Actually-Works.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/ASP_NET_Membership_Remember_Me_That_Actually_Works</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/ASP_NET_Membership_Remember_Me_That_Actually_Works</guid>
      <pubDate>Fri, 15 Jan 2010 04:07:37 GMT</pubDate>
    </item>
    <item>
      <title>HttpHandler: Generate Sitemaps for Google, MSN/Live, Yahoo, Ask</title>
      <description>Here is a brief overview of how SiteMap HttpHandler will work: A request for SiteMap, will be intercepted and passed to our SiteMap HttpHandler which will generate the SiteMap XML. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.bloggingdeveloper.com%2fpost%2fGenerate-Sitemaps-for-Google-MSN-Live-Yahoo-Ask-on-the-fly-using-an-ASPNET-HttpHandler.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.bloggingdeveloper.com%2fpost%2fGenerate-Sitemaps-for-Google-MSN-Live-Yahoo-Ask-on-the-fly-using-an-ASPNET-HttpHandler.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/HttpHandler_Generate_Sitemaps_for_Google_MSN_Live_Yahoo_Ask</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/HttpHandler_Generate_Sitemaps_for_Google_MSN_Live_Yahoo_Ask</guid>
      <pubDate>Wed, 06 Jan 2010 07:51:44 GMT</pubDate>
    </item>
    <item>
      <title>Prabir's Blog | Consuming ASP.NET Web Services using JQuery</title>
      <description>In this tutorial we will be using JQuery to consume Asp.Net web services.

If you do not know how to create webservices that output JSON results please see my previous blog post on JSON in Classical Web Services ASMX. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fblog.prabir.me%2fpost%2fConsuming-ASPNET-Web-Services-using-JQuery.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.prabir.me%2fpost%2fConsuming-ASPNET-Web-Services-using-JQuery.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/Jquery/Prabir_s_Blog_Consuming_ASP_NET_Web_Services_using_JQuery</link>
      <guid isPermaLink="true">http://webdevvote.com/Jquery/Prabir_s_Blog_Consuming_ASP_NET_Web_Services_using_JQuery</guid>
      <pubDate>Wed, 06 Jan 2010 07:51:35 GMT</pubDate>
    </item>
    <item>
      <title>Web 2.0 | Using ODBC driver to access XLS, XLSX, TXT or CSV files.</title>
      <description>In this article, i will examined how to access XLS, XLSX, TXT or CSV files. It is very easy to access these files using ODBC drivers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2009%2f12%2f18%2fUsing-ODBC-driver-to-access-XLS-XLSX-TXT-or-CSV-files.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2009%2f12%2f18%2fUsing-ODBC-driver-to-access-XLS-XLSX-TXT-or-CSV-files.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Web_2_0_Using_ODBC_driver_to_access_XLS_XLSX_TXT_or_CSV_files</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Web_2_0_Using_ODBC_driver_to_access_XLS_XLSX_TXT_or_CSV_files</guid>
      <pubDate>Wed, 06 Jan 2010 07:51:24 GMT</pubDate>
    </item>
    <item>
      <title>Reading the ProviderUserKey when using the SqlMembershipProvider</title>
      <description>The ProviderUserKey gives access to a unique identifier for each of the members in your membership data store. If you're doing a large amount of lookup's or want to cross link to another table you will find this technique will give you better performance than using the UserName property. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fruntingsproper.blogspot.com%2f2009%2f12%2freading-provideruserkey-when-using.html"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fruntingsproper.blogspot.com%2f2009%2f12%2freading-provideruserkey-when-using.html" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Reading_the_ProviderUserKey_when_using_the_SqlMembershipProvider</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Reading_the_ProviderUserKey_when_using_the_SqlMembershipProvider</guid>
      <pubDate>Sat, 02 Jan 2010 13:04:06 GMT</pubDate>
    </item>
    <item>
      <title>Web 2.0 | HTML based file upload/download to FTP server using HttpHand</title>
      <description>In this article, i will examined how to upload/download file from HTML client to FTP server using HttpHandler in C#. This approach can be very handy for application integration. Here is our html code that will consume HttpHandlers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2009%2f12%2f24%2fHTML-based-file-uploaddownload-to-FTP-server-using-HttpHandler-in-C.aspx"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.fairnet.com%2fpost%2f2009%2f12%2f24%2fHTML-based-file-uploaddownload-to-FTP-server-using-HttpHandler-in-C.aspx" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/Web_2_0_HTML_based_file_upload_download_to_FTP_server_using_HttpHand</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/Web_2_0_HTML_based_file_upload_download_to_FTP_server_using_HttpHand</guid>
      <pubDate>Sat, 02 Jan 2010 13:04:00 GMT</pubDate>
    </item>
    <item>
      <title>SOLVED: Compiler error CS1519: Invalid token 'void' in class, struct, </title>
      <description>One for the search engines really but you might want to give this short article a quick read if you have been stumped by the error above. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fruntingsproper.blogspot.com%2f2009%2f12%2fsolved-compiler-error-cs1519-invalid.html"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fruntingsproper.blogspot.com%2f2009%2f12%2fsolved-compiler-error-cs1519-invalid.html" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/AspNet/SOLVED_Compiler_error_CS1519_Invalid_token_void_in_class_struct</link>
      <guid isPermaLink="true">http://webdevvote.com/AspNet/SOLVED_Compiler_error_CS1519_Invalid_token_void_in_class_struct</guid>
      <pubDate>Sat, 02 Jan 2010 13:03:56 GMT</pubDate>
    </item>
    <item>
      <title>Best Joomla Extensions - December 2009</title>
      <description>Today we presents collection of best ofe the best Joomla! extensions for December 2009. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.ajaxline.com%2fbest-joomla-extensions-december-2009"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ajaxline.com%2fbest-joomla-extensions-december-2009" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/php/Best_Joomla_Extensions_December_2009</link>
      <guid isPermaLink="true">http://webdevvote.com/php/Best_Joomla_Extensions_December_2009</guid>
      <pubDate>Sat, 02 Jan 2010 13:03:52 GMT</pubDate>
    </item>
    <item>
      <title>Popular-on-Twitter Widget: Topsy-enabled jQuery Plugin</title>
      <description>Another Topsy-enabled jQuery plugin to list the most popular posts on your website, from your Twitter timeline or for some keyword within a selected period of time. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://webdevvote.com/vote/?url=http%3a%2f%2fwww.moretechtips.net%2f2009%2f12%2fpopular-on-twitter-widget-topsy-enabled.html"&gt;&lt;img src="http://webdevvote.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.moretechtips.net%2f2009%2f12%2fpopular-on-twitter-widget-topsy-enabled.html" border="0" alt="vote it on WebDevVote.com" /&gt;&lt;/a&gt;
</description>
      <link>http://webdevvote.com/Jquery/Popular_on_Twitter_Widget_Topsy_enabled_jQuery_Plugin</link>
      <guid isPermaLink="true">http://webdevvote.com/Jquery/Popular_on_Twitter_Widget_Topsy_enabled_jQuery_Plugin</guid>
      <pubDate>Wed, 30 Dec 2009 02:32:16 GMT</pubDate>
    </item>
  </channel>
</rss>