<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Community Blogs : ASP.NET 2.0</title><link>http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx</link><description>Tags: ASP.NET 2.0</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>HTML Validation fails: Attribute "border" exists, but can not be used for this element.</title><link>http://weblogs.asp.net/chintanpshah/archive/2009/11/14/html-validation-fails-attribute-quot-border-quot-exists-but-can-not-be-used-for-this-element.aspx</link><pubDate>Sat, 14 Nov 2009 19:31:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7254741</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7254741</wfw:commentRss><comments>http://weblogs.asp.net/chintanpshah/archive/2009/11/14/html-validation-fails-attribute-quot-border-quot-exists-but-can-not-be-used-for-this-element.aspx#comments</comments><description>Recently, I validated my website using HTML Validator . One strange error I found from validation result was: Attribute &amp;quot;border&amp;quot; exists, but can not be used for this element. I was not able to figure out the actual cause of this error at that time. I reviewed my asp.net page and there wasn&amp;#39;t any border property used for any HTML tags. I searched a lot and found a solution somewhere on microsoft support site. I forgot the exact URL that gave actual solution. But, what they said is: Put ClientTarget...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/chintanpshah/archive/2009/11/14/html-validation-fails-attribute-quot-border-quot-exists-but-can-not-be-used-for-this-element.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7254741" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/asp.net+3.5/default.aspx">asp.net 3.5</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/HTML+Validation/default.aspx">HTML Validation</category></item><item><title>Test Email Notification without configuring SMTP Server</title><link>http://weblogs.asp.net/chintanpshah/archive/2009/11/14/test-email-notification-without-smtp-configuration.aspx</link><pubDate>Sat, 14 Nov 2009 18:56:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7254718</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7254718</wfw:commentRss><comments>http://weblogs.asp.net/chintanpshah/archive/2009/11/14/test-email-notification-without-smtp-configuration.aspx#comments</comments><description>In this post, you will lean to Test Email Notification without configuring SMTP Server for your ASP.NET application....( read more ) Read More......(&lt;a href="http://weblogs.asp.net/chintanpshah/archive/2009/11/14/test-email-notification-without-smtp-configuration.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7254718" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/asp.net+3.5/default.aspx">asp.net 3.5</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SMTP+Configuration/default.aspx">SMTP Configuration</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Email+Notifications/default.aspx">Email Notifications</category></item><item><title>Using EQUATEC FREE .NET Profiler with ASP.NET Applications</title><link>http://weblogs.asp.net/meligy/archive/2009/09/09/using-equatec-free-net-profiler-with-asp-net-applications.aspx</link><pubDate>Wed, 09 Sep 2009 08:35:25 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7197545</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7197545</wfw:commentRss><comments>http://weblogs.asp.net/meligy/archive/2009/09/09/using-equatec-free-net-profiler-with-asp-net-applications.aspx#comments</comments><description>This was originally an email I sent to .NET team in my company, then decided to share as a blog post. The problem: Let’s say you have a complex application, and this application (or part of it) runs very slowly. No bug s in results, no errors or exceptions, but it just so slow! Now you want to know which part of your code is the reason, which method(s) you need to go and modify., which methods take so long to execute or consume so much memory/CPU. How would you know that? Let’s say you want to improve the performance of your application in general (say add caching or such), so, you want to identify which parts of your code deserve your attention and will really make difference (so that you don’t waste your time on optimizing something that will...(&lt;a href="http://weblogs.asp.net/meligy/archive/2009/09/09/using-equatec-free-net-profiler-with-asp-net-applications.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7197545" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Architecture/default.aspx">Architecture</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET+FAQ/default.aspx">.NET FAQ</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ALT.NET/default.aspx">ALT.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/DotNet/default.aspx">DotNet</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Link+List/default.aspx">Link List</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/misc/default.aspx">misc</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/dottrace/default.aspx">dottrace</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Profiler/default.aspx">Profiler</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/equatec/default.aspx">equatec</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.net+profiler/default.aspx">.net profiler</category></item><item><title>Summer ASP.NET Web Special Valid Until September 15</title><link>http://weblogs.asp.net/axinom/archive/2009/08/25/summer-asp-net-web-special-valid-until-september-15.aspx</link><pubDate>Tue, 25 Aug 2009 12:41:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7181012</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7181012</wfw:commentRss><comments>http://weblogs.asp.net/axinom/archive/2009/08/25/summer-asp-net-web-special-valid-until-september-15.aspx#comments</comments><description>The summer 2009 is more than hot and there is finally some refreshment for the overheated ASP.NET developers and web designers available. Axinom is providing your own full featured web site based on the Enterprise Web CMS and Microsoft .NET Framework (ASP.NET) for a fixed-price of 1400 USD. Your personal web site contains flexible and user generated dynamic lists (RSS) and contact forms, integrated user registration, protected content areas, user registration with individual rights to view content, newsletter subscription and publishing tool (up to 100.000 users inclusive!), a shop functionality to offer and sell your products, state of the art features like &amp;quot;recommend this page&amp;quot; and &amp;quot;rate this content&amp;quot;, video player control...(&lt;a href="http://weblogs.asp.net/axinom/archive/2009/08/25/summer-asp-net-web-special-valid-until-september-15.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7181012" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Content+Management+Server/default.aspx">Content Management Server</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/MVC/default.aspx">MVC</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/cms/default.aspx">cms</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Portal/default.aspx">Portal</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+Web/default.aspx">ASP.NET Web</category></item><item><title>Improve ASPX page performance by reducing HTTP Response size by combining Skin &amp; CSS</title><link>http://weblogs.asp.net/kannanambadi/archive/2009/06/22/improve-aspx-page-performance-by-reducing-http-response-size-by-combining-skin-amp-css.aspx</link><pubDate>Mon, 22 Jun 2009 02:57:43 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7131775</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7131775</wfw:commentRss><comments>http://weblogs.asp.net/kannanambadi/archive/2009/06/22/improve-aspx-page-performance-by-reducing-http-response-size-by-combining-skin-amp-css.aspx#comments</comments><description>&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; There has been numerous discussions happened on web site performance, ranging from UI design to Site H osting. Out of this, one of the important step is, to reduce the size of Http Response size. Optimizing Http Response will considerably reduce the page loading time at the browser. There are many ways to create optimized HTML markups to improve client-side performance. I would like to explain one such a way of designing web page. The Loading time factor will mainly depends on the web page size that is going to download at the client&amp;#39;s browser. In order to achieve this as a web developer, you will have to work on the following things at least. HTML -&amp;gt;...(&lt;a href="http://weblogs.asp.net/kannanambadi/archive/2009/06/22/improve-aspx-page-performance-by-reducing-http-response-size-by-combining-skin-amp-css.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7131775" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/CSS/default.aspx">CSS</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/HTML/default.aspx">HTML</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Skins/default.aspx">Skins</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/themes/default.aspx">themes</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/code+performance/default.aspx">code performance</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Response/default.aspx">Response</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/HTTP+Response/default.aspx">HTTP Response</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Page+Performance/default.aspx">Page Performance</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/StyleSheet/default.aspx">StyleSheet</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Skin/default.aspx">Skin</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Loading+Time/default.aspx">Loading Time</category></item><item><title>Error: Inconsistent accessibility: return type</title><link>http://weblogs.asp.net/farazshahkhan/archive/2009/06/16/error-inconsistent-accessibility-return-type.aspx</link><pubDate>Tue, 16 Jun 2009 06:10:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7126635</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7126635</wfw:commentRss><comments>http://weblogs.asp.net/farazshahkhan/archive/2009/06/16/error-inconsistent-accessibility-return-type.aspx#comments</comments><description>In one of my projects I found this error Inconsistent accessibility : return type...................... is less accessible than method ......... It was a quite strange error for me as I have not seen the same in past. My classes were defined as: class MyClass1 {} class MyClass2 {} class MyClass3 {} Solution to this problem is very easy, all I did is add public with all my classes. public class MyClass1 {} public class MyClass2 {} public class MyClass3 {} And once again, the day is saved by &amp;quot;Powerpuf Girls&amp;quot;, I mean by adding public :). Read More......(&lt;a href="http://weblogs.asp.net/farazshahkhan/archive/2009/06/16/error-inconsistent-accessibility-return-type.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7126635" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.Net+2.0/default.aspx">.Net 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/C_23002E00_NET/default.aspx">C#.NET</category></item><item><title>Authentication using web.config Credentials</title><link>http://weblogs.asp.net/farazshahkhan/archive/2009/04/22/authentication-using-web-config-credentials.aspx</link><pubDate>Wed, 22 Apr 2009 06:37:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7055576</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7055576</wfw:commentRss><comments>http://weblogs.asp.net/farazshahkhan/archive/2009/04/22/authentication-using-web-config-credentials.aspx#comments</comments><description>In one of my projects I have been asked to implement temporary security on sepcific module for internal usage and it was also suggested that I will not be putting more efforts on the same. First thing came in my mind was Membership/RoleProvider, but as I advised my planned solution they surprised me with the decision that I will not be using these providers and I should be using something more simpler and I was like Duh!!! Any way I started thinking about a much more simpler solution as I have been alotted the biggest time period ever of 10-15 minutes max for this task :). OK now I guess I should come to the point. During this process I realised that web.config credentials can be a good option as I personally don&amp;#39;t wanted to implement any...(&lt;a href="http://weblogs.asp.net/farazshahkhan/archive/2009/04/22/authentication-using-web-config-credentials.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7055576" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/web_2E00_config/default.aspx">web.config</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Authentication/default.aspx">Authentication</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/C_23002E00_NET/default.aspx">C#.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/credentials/default.aspx">credentials</category></item><item><title>World Wide Web - Internationalization</title><link>http://weblogs.asp.net/rrobbins/archive/2009/03/14/world-wide-web-internationalization.aspx</link><pubDate>Sat, 14 Mar 2009 17:04:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6961623</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6961623</wfw:commentRss><comments>http://weblogs.asp.net/rrobbins/archive/2009/03/14/world-wide-web-internationalization.aspx#comments</comments><description>I’m going to Paris France for my vacation this year! I’m very excited about it because I’ve always been a bit of a Francophile. Unfortunately, I don’t speak French so, being a IT professional, I’ve sought a technological solution for the language barrier. I’m not sure that I’ll need to speak any French because I’m going on a guided tour which should reduce my interaction with the locals. I’ve already blogged about ASP.NET’s support for internationalization and browser languages on my WordPress blog at: ASP.NET 2.0 Culture – Web Site Internationalization . I also blogged about Elgg’s support for languages at Elgg Languages . I’ve done some additional research since then into how PHP supports internationalization and I looked at how all the browsers...(&lt;a href="http://weblogs.asp.net/rrobbins/archive/2009/03/14/world-wide-web-internationalization.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6961623" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Localization/default.aspx">Localization</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Internationalization/default.aspx">Internationalization</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/browser+language/default.aspx">browser language</category></item><item><title>I’ll be presenting at Code Camp January 25th at California State University Fullerton at 9AM</title><link>http://alpascual.com/blog/al/archive/2009/01/23/i-ll-be-presenting-at-code-camp-january-25th-at-california-state-university-fullerton-at-9am.aspx</link><pubDate>Fri, 23 Jan 2009 10:58:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6858619</guid><dc:creator>Al Pascual : ASP.NET 2.0</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6858619</wfw:commentRss><comments>http://alpascual.com/blog/al/archive/2009/01/23/i-ll-be-presenting-at-code-camp-january-25th-at-california-state-university-fullerton-at-9am.aspx#comments</comments><description>What I’ll be presenting? Maps, maps and a little more maps! SoCal Code Camp What’s the SoCal Rock and Roll Code Camp?: Code Camp is a place for developers to come and learn from their peers. This community driven event has become an international trend where peer groups of all platforms, programming languages and disciplines band together to bring content to the community. Schedule here Who organizes this code camp? Daniel Egan , Michele Leroux Bustamante &amp;amp; Woody Pewitt , many Microsoft evangelist in that list! Hope I’ll see your there. Cheers Al Read More......(&lt;a href="http://alpascual.com/blog/al/archive/2009/01/23/i-ll-be-presenting-at-code-camp-january-25th-at-california-state-university-fullerton-at-9am.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6858619" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Code+Camp/default.aspx">Code Camp</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Silverlight+2.0/default.aspx">Silverlight 2.0</category></item><item><title>Commerce Server 2007: No Cache refresh using Host Headers</title><link>http://weblogs.asp.net/mikedopp/archive/2008/09/09/commerce-server-2007-no-cache-refresh-using-host-headers.aspx</link><pubDate>Tue, 09 Sep 2008 10:24:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6613400</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6613400</wfw:commentRss><comments>http://weblogs.asp.net/mikedopp/archive/2008/09/09/commerce-server-2007-no-cache-refresh-using-host-headers.aspx#comments</comments><description>As you all know I have been working hard writing, eating and bleeding commerce server 2007 for the past year. One thing I could never get past was why I could not do a site cache refresh from the tools provided with commerce server 2007 . The tools that are provided are what you would call management tools (mostly well written web services.). Within these awesome tools is a cool little button called refresh. It’s sole purpose is to refresh the catalog,user base and or discounts without killing the...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/mikedopp/archive/2008/09/09/commerce-server-2007-no-cache-refresh-using-host-headers.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6613400" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/IIS/default.aspx">IIS</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Commerce+Server+2007/default.aspx">Commerce Server 2007</category></item><item><title>File Upload control AJAX effect</title><link>http://weblogs.asp.net/farazshahkhan/archive/2008/08/03/file-upload-control-ajax-effect.aspx</link><pubDate>Sun, 03 Aug 2008 06:42:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6474585</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6474585</wfw:commentRss><comments>http://weblogs.asp.net/farazshahkhan/archive/2008/08/03/file-upload-control-ajax-effect.aspx#comments</comments><description>Since long I was wondering on how I will be able to use FileUpload control inside UpdatePanel and I am sure there will be lot of other people who were expecting the same to be working. I found an intersting video article by Joe Stagner in which he described how to use the FileUpload control inside iframe to give some AJAX effect. You can find this video here. http://www.asp.net/learn/videos/video-254.aspx Read More......(&lt;a href="http://weblogs.asp.net/farazshahkhan/archive/2008/08/03/file-upload-control-ajax-effect.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6474585" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/AJAX/default.aspx">AJAX</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/JavaScript/default.aspx">JavaScript</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.Net+2.0/default.aspx">.Net 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/UpdatePanel/default.aspx">UpdatePanel</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/FileUpload/default.aspx">FileUpload</category></item><item><title>ASP.NET AJAX Roadmap</title><link>http://weblogs.asp.net/nunogodinho/archive/2008/07/08/asp-net-ajax-roadmap.aspx</link><pubDate>Tue, 08 Jul 2008 22:45:54 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6378014</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6378014</wfw:commentRss><comments>http://weblogs.asp.net/nunogodinho/archive/2008/07/08/asp-net-ajax-roadmap.aspx#comments</comments><description>&amp;#160;&amp;#160;&amp;#160;&amp;#160; Being ASP.NET AJAX a very important part of ASP.NET one thing that would help is knowing what and when will be delivered and so a Roadmap is a must-have, and Microsoft delivered precisely that in order for us to get to know what&amp;#39;s being done and have some notion about when it will be delivered, and I think there&amp;#39;s some great stuff there like AJAX in ASP.NET MVC, Interoperability, Accessibility and even support for OpenAJAX-compliant XML metafiles, never forgetting that the Javascript support in Visual Studio must evolve also. So if you want to have detailed information about this subject check here for the complete document with all the explanation regarding this Roadmap. Read More......(&lt;a href="http://weblogs.asp.net/nunogodinho/archive/2008/07/08/asp-net-ajax-roadmap.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6378014" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/AJAX/default.aspx">AJAX</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+MVC/default.aspx">ASP.NET MVC</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/asp.net+3.5/default.aspx">asp.net 3.5</category></item><item><title>Converting Data Table / Dataset Into JSON String</title><link>http://weblogs.asp.net/navaidakhtar/archive/2008/07/08/converting-data-table-dataset-into-json-string.aspx</link><pubDate>Tue, 08 Jul 2008 13:04:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6376771</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6376771</wfw:commentRss><comments>http://weblogs.asp.net/navaidakhtar/archive/2008/07/08/converting-data-table-dataset-into-json-string.aspx#comments</comments><description>JSON ( J ava S cript O bject N otation), is a light weight, easily understandable to read and write string. It is also easily parse-able by machine. JSON is introduced on two structues A collection (key/value pair) And ordered list of values. I have not covered this topic in detail. Detailed analysis is stated on http://www.json.org/ . I am presenting a helper function (in C#) for developers for fast parsing on datatable / dataset into JSON String, and access it on client-side. public static string GetJSONString( DataTable Dt) { string [] StrDc = new string [Dt.Columns.Count]; string HeadStr = string .Empty; for ( int i = 0; i &amp;lt; Dt.Columns.Count; i++) { StrDc[i] = Dt.Columns[i].Caption; HeadStr += &amp;quot;\&amp;quot;&amp;quot; + StrDc[i] + &amp;quot;\&amp;quot;...(&lt;a href="http://weblogs.asp.net/navaidakhtar/archive/2008/07/08/converting-data-table-dataset-into-json-string.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6376771" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/AJAX/default.aspx">AJAX</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/JSON/default.aspx">JSON</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Java+script/default.aspx">Java script</category></item><item><title>Custom Web Service Test Page Design</title><link>http://weblogs.asp.net/rrobbins/archive/2008/06/29/custom-web-service-test-page-design.aspx</link><pubDate>Sun, 29 Jun 2008 13:07:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6335362</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6335362</wfw:commentRss><comments>http://weblogs.asp.net/rrobbins/archive/2008/06/29/custom-web-service-test-page-design.aspx#comments</comments><description>You can customize the design of a web service&amp;#39;s test page with a single line of code in the web.config file. But like most things in ASP.NET it is not that easy if you actually try it! Although you can find instructions on how to specify a custom wsdlHelpGenerator page it does not seem as if any developer has gone through with it and actually customized the design. They just tell you about the obscure web.config tag and leave it at that. This reflects the typical programmer&amp;#39;s indifference to design. Although, to be honest, you really don&amp;#39;t need to customize the design of the web service&amp;#39;s test page because this is rarely exposed to the public. The first thing you should do is copy the default wsdlHelpGenerator template which...(&lt;a href="http://weblogs.asp.net/rrobbins/archive/2008/06/29/custom-web-service-test-page-design.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6335362" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Web+Services/default.aspx">Web Services</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/CSS/default.aspx">CSS</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Design+Templates/default.aspx">Design Templates</category></item><item><title>Choices to Develop ASP.NET Applications</title><link>http://weblogs.asp.net/nunogodinho/archive/2008/06/19/choices-to-develop-asp-net-applications.aspx</link><pubDate>Wed, 18 Jun 2008 23:48:42 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6292900</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6292900</wfw:commentRss><comments>http://weblogs.asp.net/nunogodinho/archive/2008/06/19/choices-to-develop-asp-net-applications.aspx#comments</comments><description>&amp;#160; There are several ways to develop ASP.NET, and this has been growing and it tends to continue to grow in order to chose the best approach to the problem in hand, and so I decided to write a little bit about this subject. &amp;#160; So ok, with the introduction of the ASP.NET 3.5 and even with the ASP.NET 2.0 with the AJAX Extensions you had 3 choices to develop ASP.NET Applications, and those were: ASP.NET Applications This was the best know type of applications without using any AJAX or anything else, just the plain simple ASP.NET Application, and this could be done using 2 types of development, that were the choices on the Visual Studio when beginning the development, ASP.NET Web Application Application that is pre-compiled and had some...(&lt;a href="http://weblogs.asp.net/nunogodinho/archive/2008/06/19/choices-to-develop-asp-net-applications.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6292900" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/AJAX/default.aspx">AJAX</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+2.0/default.aspx">ASP.NET 2.0</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/ASP.NET+MVC/default.aspx">ASP.NET MVC</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/asp.net+3.5/default.aspx">asp.net 3.5</category></item></channel></rss>