<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>ASP.NET</title><link>http://aspnet.codeplex.com/project/feeds/rss</link><description>This project gives you access to the code for upcoming releases that the ASP.NET team is working on, starting with the ASP.NET MVC Framework.</description><item><title>Closed Issue: ValidationResult Returned From IValidatableObject.Validate Is Not Localized In MVC3 [9117]</title><link>http://aspnet.codeplex.com/workitem/9117</link><description>Expected&amp;#58; When using IValidatableObject.Validate, a ValidationResult created using a resource value should use the localized version of the resource.&lt;br /&gt;Actual&amp;#58; The default locale string is always returned regardless of the current locale.&lt;br /&gt;&lt;br /&gt;Example&amp;#58;&lt;br /&gt;I am using the IValidatableObject.Validate method to verify that two properties match corresponding fields in a view model&amp;#58;&lt;br /&gt;&lt;br /&gt;using DataResources &amp;#61; Namespace.For.The.Localization.Resources.IndexViewModel&amp;#59;&lt;br /&gt;&lt;br /&gt;public class IndexViewModel, IValidatableObject &amp;#123;&lt;br /&gt;&lt;br /&gt;    private string _field1_check_value &amp;#61; &amp;#34;foo&amp;#34;&amp;#59;&lt;br /&gt;    private string _field2_check_value &amp;#61; &amp;#34;bar&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;    &amp;#91;Required&amp;#40;ErrorMessageResourceName&amp;#61;&amp;#34;Validation_Field1_Required&amp;#34;, ErrorMessageResourceType&amp;#61;typeof&amp;#40;DataResources&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;    &amp;#91;DataType&amp;#40;DataType.Text&amp;#41;&amp;#93;&lt;br /&gt;    public string Field1 &amp;#123; get&amp;#59; set&amp;#59; &amp;#125;&lt;br /&gt;&lt;br /&gt;    &amp;#91;Required&amp;#40;ErrorMessageResourceName&amp;#61;&amp;#34;Validation_Field2_Required&amp;#34;, ErrorMessageResourceType&amp;#61;typeof&amp;#40;DataResources&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;    &amp;#91;DataType&amp;#40;DataType.Field2&amp;#41;&amp;#93;&lt;br /&gt;    public string Field2 &amp;#123; get&amp;#59; set&amp;#59; &amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    public IEnumerable&amp;#60;ValidationResult&amp;#62; Validate&amp;#40;ValidationContext validationContext&amp;#41; &amp;#123;&lt;br /&gt;        if &amp;#40;&amp;#33;&amp;#40;Field1.Equals&amp;#40;_field1_check_value&amp;#41; &amp;#38;&amp;#38; Field2.Equals&amp;#40;_field2_check_value&amp;#41;&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;            string&amp;#91;&amp;#93; memberNames &amp;#61; &amp;#123; &amp;#34;Field1&amp;#34;, &amp;#34;Field2&amp;#34; &amp;#125;&amp;#59;&lt;br /&gt;            yield return new ValidationResult&amp;#40;DataResources.Validation_InvalidCredentials, memberNames&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;    &amp;#125;&lt;br /&gt;&lt;br /&gt;When the site is viewed using any locale other than the default, the Required validation messages are properly localized. However, the message returned from the Validate method are always in the default locale.&lt;br /&gt;&lt;br /&gt;If the Validate method is called directly from a controller action, the correctly-localized error message is returned. As such, I am using the following as a work-around&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#91;HttpPost&amp;#93;&lt;br /&gt;&amp;#91;ValidateAntiForgeryToken&amp;#93;&lt;br /&gt;public ActionResult Index&amp;#40;IndexViewModel viewModel&amp;#41; &amp;#123;&lt;br /&gt;&lt;br /&gt;    if &amp;#40;ModelState.IsValid&amp;#41; &amp;#123;&lt;br /&gt;        &amp;#47;&amp;#47;Do Stuff&lt;br /&gt;        return RedirectToAction&amp;#40;&amp;#34;Action&amp;#34;, &amp;#34;Controller&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;    else &amp;#123;&lt;br /&gt;        &amp;#47;&amp;#47; The original validation did not properly localize error messages coming from IValidatableObject.Validate.&lt;br /&gt;        &amp;#47;&amp;#47; Clearing the ModelState and forcing the validation at this point results in localized error messages.&lt;br /&gt;        ModelState.Clear&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        var errors &amp;#61; viewModel.Validate&amp;#40;new ValidationContext&amp;#40;viewModel, null, null&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;        foreach &amp;#40;var error in errors&amp;#41;&lt;br /&gt;            foreach &amp;#40;var memberName in error.MemberNames&amp;#41;&lt;br /&gt;                ModelState.AddModelError&amp;#40;memberName, error.ErrorMessage&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;    return View&amp;#40;&amp;#34;Index&amp;#34;, viewModel&amp;#41;&amp;#59;&lt;br /&gt;    &amp;#125;&lt;br /&gt;Comments: &lt;p&gt;We are not able to reproduce this error. Please make sure that the culture for the request is being set early enough. If it is being set after model binding has occured &amp;#40;which is when validation usually happens&amp;#41;, then model binding will use the OS&amp;#39;s default culture. One good place to set the culture of the current request is in the Application_BeginRequest event.&lt;/p&gt;&lt;p&gt;More info on globalization and localization is available on Scott Hanselman&amp;#39;s blog&amp;#58; http&amp;#58;&amp;#47;&amp;#47;www.hanselman.com&amp;#47;blog&amp;#47;GlobalizationInternationalizationAndLocalizationInASPNETMVC3JavaScriptAndJQueryPart1.aspx&lt;/p&gt;</description><author>eilonlipton</author><pubDate>Tue, 21 Feb 2012 20:50:51 GMT</pubDate><guid isPermaLink="false">Closed Issue: ValidationResult Returned From IValidatableObject.Validate Is Not Localized In MVC3 [9117] 20120221085051P</guid></item><item><title>Created Issue: displaying Region country and cities in tree view [9943]</title><link>http://aspnet.codeplex.com/workitem/9943</link><description>Hi&amp;#33;&lt;br /&gt;I just want give access to the customer over region, country and city, while creating account for the customer, Please help me what interface i should use.&lt;br /&gt;</description><author>gnskhan</author><pubDate>Mon, 20 Feb 2012 08:38:33 GMT</pubDate><guid isPermaLink="false">Created Issue: displaying Region country and cities in tree view [9943] 20120220083833A</guid></item><item><title>Updated Wiki: MVC</title><link>http://aspnet.codeplex.com/wikipage?title=MVC&amp;version=51</link><description>&lt;div class="wikidoc"&gt;
&lt;h1 style="padding-bottom:0px; margin-bottom:0px"&gt;ASP.NET MVC&lt;/h1&gt;
&lt;p&gt;ASP.NET MVC is a free, fully supported Microsoft framework for developing great web applications using the Model-View-Controller pattern. It provides total control over your HTML and URLs, enables rich Ajax integration, and facilitates test driven development.&lt;/p&gt;
&lt;p&gt;To find out more information about ASP.NET MVC, visit the following resources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;a href="http://www.asp.net/mvc/"&gt;ASP.NET MVC site&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt; site provides tutorials, quickstarts, and videos.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/dd394709.aspx"&gt;ASP.NET MVC Documentation on MSDN&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;ASP.NET MVC 4&amp;nbsp;Beta Released!&lt;/h2&gt;
&lt;p&gt;The ASP.NET MVC 4 Beta is now available!&amp;nbsp;To find out more about the release, visit our&amp;nbsp;&lt;a title="ASP.NET MVC 4" href="http://asp.net/mvc/mvc4"&gt;ASP.NET MVC 4 information page&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Installation&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;ASP.NET MVC 4 Beta for Visual Studio 2010:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=243392" target="_blank"&gt;ASP.NET MVC 4 Web Platform Installer for Visual Studio 2010&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Download the standalone ASP.NET MVC 4 Beta &lt;a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=28942"&gt;
installer executable&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;ASP.NET MVC 4 Developer Preview for Visual Studio 11 Developer Preview:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appid=MVC4VS11&amp;prerelease=true" target="_blank"&gt;ASP.NET MVC 4 Developer Preview Web Platform Installer for Visual Studio 11 Developer Preview&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Download the &lt;a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27419"&gt;
installer executable&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;ASP.NET MVC 3 RTM Released!&lt;/h2&gt;
&lt;p&gt;We've recently released RTM of ASP.NET MVC 3.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appid=MVC3"&gt;Install ASP.NET MVC 3 via the Web Platform Installer&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=208140"&gt;Download the installer&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt; from the Microsoft Download Center.
&lt;/li&gt;&lt;li&gt;&lt;a title="ASP.NET MVC 3 Source Code" href="http://aspnet.codeplex.com/releases/view/58781"&gt;ASP.NET MVC 3 RTM&lt;/a&gt; is available on CodePlex with source code and the MVC Futures library
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;To learn about the new features introduced in ASP.NET MVC 3, visit the &lt;a href="http://asp.net/mvc/mvc3#overview"&gt;
What's new in ASP.NET MVC 3 page&lt;/a&gt; and be sure to read the &lt;a href="http://www.asp.net/learn/whitepapers/mvc3-release-notes"&gt;
release notes&lt;/a&gt;.&lt;/p&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;Roadmap&lt;/h2&gt;
&lt;p style="padding-bottom:0px; margin-bottom:0px"&gt;The ASP.NET team is hard at work on the next version of ASP.NET MVC. To find out what&amp;rsquo;s coming next, visit the
&lt;strong&gt;&lt;a title="ASP.NET MVC 4 Roadmap" href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20MVC%204%20RoadMap"&gt;roadmap&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;How to Provide Feedback&lt;/h2&gt;
&lt;p&gt;Because we highly value your input on this release version, please do submit feedback. There are two primary means for providing feedback:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The &lt;a href="http://forums.asp.net/1146.aspx"&gt;ASP.NET MVC Forum&lt;/a&gt; on the &lt;a href="http://forums.asp.net"&gt;
ASP.NET Forums&lt;/a&gt; site allows you to engage in discussions with other customers and with the ASP.NET MVC product team. This is a great place to ask questions, post comments, and learn more about using ASP.NET MVC.
&lt;/li&gt;&lt;li&gt;The &lt;a href="http://www.codeplex.com/aspnet/WorkItem/List.aspx"&gt;Issue Tracker&lt;/a&gt; tab on this site allows you to file bugs to the product team for consideration. The Issue Tracker is voting-based, so bugs with the most votes are given priority. (However,
 the product team will consider each issue individually, and more votes does not necessarily guarantee acceptance.)
&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; Please use &amp;quot;Issue&amp;quot; type for logging bugs and &amp;quot;Feature&amp;quot; type for logging new feature suggestions.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Blog Posts: Here are some of the most recent blog posts on ASP.NET MVC from our team members and the community:
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/marcinon/archive/2011/01/13/mvc-3-project-upgrade-tool.aspx"&gt;Migrating an ASP.NET MVC 2 applications to ASP.NET MVC 3&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://haacked.com/archive/2008/08/29/how-a-method-becomes-an-action.aspx"&gt;How a method becomes an action&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://bradwilson.typepad.com/blog/2008/08/partial-renderi.html"&gt;Partial Rendering and View Engines in ASP.NET MVC&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.codeville.net/2008/09/01/prevent-cross-site-request-forgery-csrf-using-aspnet-mvcs-antiforgerytoken-helper/#comment-2171"&gt;Prevent Cross-Site Request Forgery (CSRF) using ASP.NET MVC's AntiForgeryToken helper&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;Unit Test Integration&lt;/h2&gt;
&lt;p&gt;The ASP.NET MVC Project template (which we'll upload to this project very soon) provides a unit test dialog which allows you to select a unit test framework from a drop down. We are working closely with unit test framework providers to intergrate their frameworks
 into that drop down. The following is a list of those projects which have installers that integrate with ASP.NET MVC. These projects are run by others in the community, not the ASP.NET team.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://code.google.com/p/mb-unit/downloads/list"&gt;MbUnit Downloads Page&lt;/a&gt; and
&lt;a href="http://weblogs.asp.net/astopford/archive/2008/03/10/microsoft-mvc-and-mbunit.aspx"&gt;
Announcement&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.codeplex.com/xunit/Release/ProjectReleases.aspx?ReleaseId=13418"&gt;xUnit.net v1.0.1&lt;/a&gt; and
&lt;a href="http://bradwilson.typepad.com/blog/2008/05/xunitnet-101-re.html"&gt;announcement&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;Other Interesting Projects:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=T4MVC&amp;referringTitle=MVC"&gt;T4MVC&lt;/a&gt;: a T4 Template that generates strongly typed helpers for ASP.NET MVC
&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.codeplex.com/MVCContrib"&gt;MVCContrib&lt;/a&gt;: A Codeplex project to add functionality to ASP.NET MVC. This project is run by others in the community, not the ASP.NET team.
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>danroth27</author><pubDate>Sat, 18 Feb 2012 00:10:02 GMT</pubDate><guid isPermaLink="false">Updated Wiki: MVC 20120218121002A</guid></item><item><title>Updated Wiki: Home</title><link>http://aspnet.codeplex.com/wikipage?version=122</link><description>&lt;div class="wikidoc"&gt;   &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=MVC&amp;referringTitle=Home"&gt;MVC&lt;/a&gt;&lt;/b&gt;   |   &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=AJAX&amp;referringTitle=Home"&gt;AJAX&lt;/a&gt;&lt;/b&gt;  |  &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Data&amp;referringTitle=Home"&gt;Dynamic Data&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebForms&amp;referringTitle=Home"&gt;WebForms&lt;/a&gt;&lt;/b&gt;  | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Language%20Support&amp;referringTitle=Home"&gt;Dynamic Language Support&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20QA&amp;referringTitle=Home"&gt;ASP.NET QA&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Runtime&amp;referringTitle=Home"&gt;Runtime&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebPages&amp;referringTitle=Home"&gt;WebPages&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;This CodePlex project gives you access to the code for upcoming releases that the Microsoft ASP.NET team is working on. The project gives you a look at the design and lets you have a voice in it. You can send us feedback for all ASP.NET releases on the site through the &lt;a href="http://forums.asp.net/" class="externalLink"&gt;ASP.NET forums&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; on the &lt;a href="http://www.asp.net" class="externalLink"&gt;ASP.NET Web site&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Latest Releases:&lt;/b&gt; &lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/releases/view/58781"&gt;ASP.NET MVC 3 RTM&lt;/a&gt; source as well as the source for ASP.NET MVC 3 Futures is now available for download. &lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/releases/view/65787"&gt;Sprite and Image Optimization Preview 4&lt;/a&gt; - Check this out for optimzing your page performance with images!&lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=AJAX&amp;referringTitle=Home"&gt;ASP.NET Ajax Library Beta&lt;/a&gt; is now available for download. This release includes the Ajax Control Toolkit, the new client script loader, the new imperative syntax, and jQuery integration. &lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/releases/view/35501"&gt;Lightweight Test Automation Framework Nov. Release&lt;/a&gt; is now available for download. This release features several improvements, bug fixes, and new tools.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=MVC&amp;referringTitle=Home"&gt;MVC&lt;/a&gt;&lt;/b&gt;: ASP.NET MVC enables you to build model-view-controller (MVC) applications by using ASP.NET.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=AJAX&amp;referringTitle=Home"&gt;AJAX&lt;/a&gt;&lt;/b&gt;: The ASP.NET Ajax Library includes the Ajax Control Toolkit and enables you to build database-driven web applications that execute entirely in the web browser.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Data&amp;referringTitle=Home"&gt;Dynamic Data&lt;/a&gt;&lt;/b&gt;: ASP.NET Dynamic Data enables you to quickly build a functional data-driven application, based on LINQ-to-SQL or ADO.NET Entity Framework data models.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebForms&amp;referringTitle=Home"&gt;WebForms&lt;/a&gt;&lt;/b&gt;: The ASP.NET Web Forms framework enables rapid development of Web applications. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Language%20Support&amp;referringTitle=Home"&gt;Dynamic Language Support&lt;/a&gt;&lt;/b&gt;:  The ASP.NET Dynamic-Language Runtime (DLR) is a framework for using .NET Framework-based dynamic languages. The project includes samples for creating ASP.NET Web pages by using dynamic languages such as IronPython and IronRuby.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20QA&amp;referringTitle=Home"&gt;ASP.NET QA&lt;/a&gt;&lt;/b&gt;: Testing related releases and sample code from the ASP.NET Quality Assurance team.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Runtime&amp;referringTitle=Home"&gt;Runtime&lt;/a&gt;&lt;/b&gt;: This area contains previews of future API&amp;#39;s and features for the ASP.NET runtime.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebPages&amp;referringTitle=Home"&gt;WebPages&lt;/a&gt;&lt;/b&gt;: ASP.NET Web Pages with Razor Syntax is a simple web framework that helps you quickly build applications with ASP.NET.&lt;br /&gt;&lt;br /&gt;You can download the source code and compile it on your own computer. If you find any bugs or other issues, please use the &lt;a href="http://www.codeplex.com/aspnet/WorkItem/List.aspx" class="externalLink"&gt;issue tracker&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or the &lt;a href="http://forums.asp.net/" class="externalLink"&gt;forums&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; to notify us.&lt;br /&gt;
&lt;h3&gt;Notes&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;We cannot include any source code that you send us in the project (through comments, patches, or items in the Issue Tracker). However, we do welcome all feedback.&lt;/li&gt;
&lt;li&gt;Unless otherwise stated, the source code and binary files in this project should be considered early alpha builds and as such are intended for experimentation only.&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>danroth27</author><pubDate>Fri, 17 Feb 2012 22:20:06 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120217102006P</guid></item><item><title>Updated Wiki: WCF REST</title><link>http://aspnet.codeplex.com/wikipage?title=WCF REST&amp;version=17</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;The WCF REST Starter Kit is no longer supported&lt;/h1&gt;
To build RESTful services using .NET please use &lt;b&gt;&lt;a href="http://www.asp.net/web-api" class="externalLink"&gt;ASP.NET Web API&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>danroth27</author><pubDate>Fri, 17 Feb 2012 22:19:33 GMT</pubDate><guid isPermaLink="false">Updated Wiki: WCF REST 20120217101933P</guid></item><item><title>Updated Wiki: WCF REST</title><link>http://aspnet.codeplex.com/wikipage?title=WCF REST&amp;version=16</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;The WCF REST Starter Kit is no longer supported&lt;/h1&gt;
To build RESTful services using .NET please use &lt;b&gt;&lt;a href="http://www.asp.net/web-api" class="externalLink"&gt;ASP.NET Web API&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>danroth27</author><pubDate>Fri, 17 Feb 2012 22:19:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: WCF REST 20120217101916P</guid></item><item><title>Updated Wiki: Home</title><link>http://aspnet.codeplex.com/wikipage?version=121</link><description>&lt;div class="wikidoc"&gt;   &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=MVC&amp;referringTitle=Home"&gt;MVC&lt;/a&gt;&lt;/b&gt;   |   &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=AJAX&amp;referringTitle=Home"&gt;AJAX&lt;/a&gt;&lt;/b&gt;  |  &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Data&amp;referringTitle=Home"&gt;Dynamic Data&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebForms&amp;referringTitle=Home"&gt;WebForms&lt;/a&gt;&lt;/b&gt;  | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Language%20Support&amp;referringTitle=Home"&gt;Dynamic Language Support&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20QA&amp;referringTitle=Home"&gt;ASP.NET QA&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Runtime&amp;referringTitle=Home"&gt;Runtime&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WCF%20REST&amp;referringTitle=Home"&gt;WCF REST&lt;/a&gt;&lt;/b&gt; | &lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebPages&amp;referringTitle=Home"&gt;WebPages&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;This CodePlex project gives you access to the code for upcoming releases that the Microsoft ASP.NET team is working on. The project gives you a look at the design and lets you have a voice in it. You can send us feedback for all ASP.NET releases on the site through the &lt;a href="http://forums.asp.net/" class="externalLink"&gt;ASP.NET forums&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; on the &lt;a href="http://www.asp.net" class="externalLink"&gt;ASP.NET Web site&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Latest Releases:&lt;/b&gt; &lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/releases/view/58781"&gt;ASP.NET MVC 3 RTM&lt;/a&gt; source as well as the source for ASP.NET MVC 3 Futures is now available for download. &lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/releases/view/65787"&gt;Sprite and Image Optimization Preview 4&lt;/a&gt; - Check this out for optimzing your page performance with images!&lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=AJAX&amp;referringTitle=Home"&gt;ASP.NET Ajax Library Beta&lt;/a&gt; is now available for download. This release includes the Ajax Control Toolkit, the new client script loader, the new imperative syntax, and jQuery integration. &lt;br /&gt;&lt;a href="http://aspnet.codeplex.com/releases/view/35501"&gt;Lightweight Test Automation Framework Nov. Release&lt;/a&gt; is now available for download. This release features several improvements, bug fixes, and new tools.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=MVC&amp;referringTitle=Home"&gt;MVC&lt;/a&gt;&lt;/b&gt;: ASP.NET MVC enables you to build model-view-controller (MVC) applications by using ASP.NET.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=AJAX&amp;referringTitle=Home"&gt;AJAX&lt;/a&gt;&lt;/b&gt;: The ASP.NET Ajax Library includes the Ajax Control Toolkit and enables you to build database-driven web applications that execute entirely in the web browser.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Data&amp;referringTitle=Home"&gt;Dynamic Data&lt;/a&gt;&lt;/b&gt;: ASP.NET Dynamic Data enables you to quickly build a functional data-driven application, based on LINQ-to-SQL or ADO.NET Entity Framework data models.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebForms&amp;referringTitle=Home"&gt;WebForms&lt;/a&gt;&lt;/b&gt;: The ASP.NET Web Forms framework enables rapid development of Web applications. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Dynamic%20Language%20Support&amp;referringTitle=Home"&gt;Dynamic Language Support&lt;/a&gt;&lt;/b&gt;:  The ASP.NET Dynamic-Language Runtime (DLR) is a framework for using .NET Framework-based dynamic languages. The project includes samples for creating ASP.NET Web pages by using dynamic languages such as IronPython and IronRuby.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20QA&amp;referringTitle=Home"&gt;ASP.NET QA&lt;/a&gt;&lt;/b&gt;: Testing related releases and sample code from the ASP.NET Quality Assurance team.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=Runtime&amp;referringTitle=Home"&gt;Runtime&lt;/a&gt;&lt;/b&gt;: This area contains previews of future API&amp;#39;s and features for the ASP.NET runtime.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=WebPages&amp;referringTitle=Home"&gt;WebPages&lt;/a&gt;&lt;/b&gt;: ASP.NET Web Pages with Razor Syntax is a simple web framework that helps you quickly build applications with ASP.NET.&lt;br /&gt;&lt;br /&gt;You can download the source code and compile it on your own computer. If you find any bugs or other issues, please use the &lt;a href="http://www.codeplex.com/aspnet/WorkItem/List.aspx" class="externalLink"&gt;issue tracker&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or the &lt;a href="http://forums.asp.net/" class="externalLink"&gt;forums&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; to notify us.&lt;br /&gt;
&lt;h3&gt;Notes&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;We cannot include any source code that you send us in the project (through comments, patches, or items in the Issue Tracker). However, we do welcome all feedback.&lt;/li&gt;
&lt;li&gt;Unless otherwise stated, the source code and binary files in this project should be considered early alpha builds and as such are intended for experimentation only.&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>danroth27</author><pubDate>Fri, 17 Feb 2012 22:15:10 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120217101510P</guid></item><item><title>Updated Wiki: MVC</title><link>http://aspnet.codeplex.com/wikipage?title=MVC&amp;version=50</link><description>&lt;div class="wikidoc"&gt;
&lt;h1 style="padding-bottom:0px; margin-bottom:0px"&gt;ASP.NET MVC&lt;/h1&gt;
&lt;p&gt;ASP.NET MVC is a free, fully supported Microsoft framework for developing great web applications using the Model-View-Controller pattern. It provides total control over your HTML and URLs, enables rich Ajax integration, and facilitates test driven development.&lt;/p&gt;
&lt;p&gt;To find out more information about ASP.NET MVC, visit the following resources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;a href="http://www.asp.net/mvc/"&gt;ASP.NET MVC site&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt; site provides tutorials, quickstarts, and videos.
&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/dd394709.aspx"&gt;ASP.NET MVC Documentation on MSDN&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;ASP.NET MVC 4&amp;nbsp;Beta Released!&lt;/h2&gt;
&lt;p&gt;The ASP.NET MVC 4 Beta is now available!&amp;nbsp;To find out more about the release, visit our&amp;nbsp;&lt;a title="ASP.NET MVC 4" href="http://asp.net/mvc/mvc4"&gt;ASP.NET MVC 4 information page&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Installation and Help&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;ASP.NET MVC 4 Beta for Visual Studio 2010:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=243392" target="_blank"&gt;ASP.NET MVC 4 Web Platform Installer for Visual Studio 2010&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Download the standalone ASP.NET MVC 4 Beta &lt;a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=28942"&gt;
installer executable&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;ASP.NET MVC 4 Developer Preview for Visual Studio 11 Developer Preview:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appid=MVC4VS11&amp;prerelease=true" target="_blank"&gt;ASP.NET MVC 4 Developer Preview Web Platform Installer for Visual Studio 11 Developer Preview&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Download the &lt;a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27419"&gt;
installer executable&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;ASP.NET MVC 3 RTM Released!&lt;/h2&gt;
&lt;p&gt;We've recently released RTM of ASP.NET MVC 3.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appid=MVC3"&gt;Install ASP.NET MVC 3 via the Web Platform Installer&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=208140"&gt;Download the installer&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt; from the Microsoft Download Center.
&lt;/li&gt;&lt;li&gt;&lt;a title="ASP.NET MVC 3 Source Code" href="http://aspnet.codeplex.com/releases/view/58781"&gt;ASP.NET MVC 3 RTM&lt;/a&gt; is available on CodePlex with source code and the MVC Futures library
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;To learn about the new features introduced in ASP.NET MVC 3, visit the &lt;a href="http://asp.net/mvc/mvc3#overview"&gt;
What's new in ASP.NET MVC 3 page&lt;/a&gt; and be sure to read the &lt;a href="http://www.asp.net/learn/whitepapers/mvc3-release-notes"&gt;
release notes&lt;/a&gt;.&lt;/p&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;Roadmap&lt;/h2&gt;
&lt;p style="padding-bottom:0px; margin-bottom:0px"&gt;The ASP.NET team is hard at work on the next version of ASP.NET MVC. To find out what&amp;rsquo;s coming next, visit the
&lt;strong&gt;&lt;a title="ASP.NET MVC 4 Roadmap" href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20MVC%204%20RoadMap"&gt;roadmap&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;How to Provide Feedback&lt;/h2&gt;
&lt;p&gt;Because we highly value your input on this release version, please do submit feedback. There are two primary means for providing feedback:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The &lt;a href="http://forums.asp.net/1146.aspx"&gt;ASP.NET MVC Forum&lt;/a&gt; on the &lt;a href="http://forums.asp.net"&gt;
ASP.NET Forums&lt;/a&gt; site allows you to engage in discussions with other customers and with the ASP.NET MVC product team. This is a great place to ask questions, post comments, and learn more about using ASP.NET MVC.
&lt;/li&gt;&lt;li&gt;The &lt;a href="http://www.codeplex.com/aspnet/WorkItem/List.aspx"&gt;Issue Tracker&lt;/a&gt; tab on this site allows you to file bugs to the product team for consideration. The Issue Tracker is voting-based, so bugs with the most votes are given priority. (However,
 the product team will consider each issue individually, and more votes does not necessarily guarantee acceptance.)
&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; Please use &amp;quot;Issue&amp;quot; type for logging bugs and &amp;quot;Feature&amp;quot; type for logging new feature suggestions.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Blog Posts: Here are some of the most recent blog posts on ASP.NET MVC from our team members and the community:
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/marcinon/archive/2011/01/13/mvc-3-project-upgrade-tool.aspx"&gt;Migrating an ASP.NET MVC 2 applications to ASP.NET MVC 3&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://haacked.com/archive/2008/08/29/how-a-method-becomes-an-action.aspx"&gt;How a method becomes an action&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://bradwilson.typepad.com/blog/2008/08/partial-renderi.html"&gt;Partial Rendering and View Engines in ASP.NET MVC&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.codeville.net/2008/09/01/prevent-cross-site-request-forgery-csrf-using-aspnet-mvcs-antiforgerytoken-helper/#comment-2171"&gt;Prevent Cross-Site Request Forgery (CSRF) using ASP.NET MVC's AntiForgeryToken helper&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;Unit Test Integration&lt;/h2&gt;
&lt;p&gt;The ASP.NET MVC Project template (which we'll upload to this project very soon) provides a unit test dialog which allows you to select a unit test framework from a drop down. We are working closely with unit test framework providers to intergrate their frameworks
 into that drop down. The following is a list of those projects which have installers that integrate with ASP.NET MVC. These projects are run by others in the community, not the ASP.NET team.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://code.google.com/p/mb-unit/downloads/list"&gt;MbUnit Downloads Page&lt;/a&gt; and
&lt;a href="http://weblogs.asp.net/astopford/archive/2008/03/10/microsoft-mvc-and-mbunit.aspx"&gt;
Announcement&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.codeplex.com/xunit/Release/ProjectReleases.aspx?ReleaseId=13418"&gt;xUnit.net v1.0.1&lt;/a&gt; and
&lt;a href="http://bradwilson.typepad.com/blog/2008/05/xunitnet-101-re.html"&gt;announcement&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h2 style="padding-bottom:0px; margin-bottom:0px"&gt;Other Interesting Projects:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=T4MVC&amp;referringTitle=MVC"&gt;T4MVC&lt;/a&gt;: a T4 Template that generates strongly typed helpers for ASP.NET MVC
&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.codeplex.com/MVCContrib"&gt;MVCContrib&lt;/a&gt;: A Codeplex project to add functionality to ASP.NET MVC. This project is run by others in the community, not the ASP.NET team.
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>danroth27</author><pubDate>Fri, 17 Feb 2012 22:01:38 GMT</pubDate><guid isPermaLink="false">Updated Wiki: MVC 20120217100138P</guid></item><item><title>Reviewed: ASP.NET MVC 3 Application Upgrader (Feb 17, 2012)</title><link>http://aspnet.codeplex.com/releases/view/59008#ReviewBy-coppermill</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - Perfect, its does the job and worked first time  &amp;#58;-&amp;#41;</description><author>coppermill</author><pubDate>Fri, 17 Feb 2012 15:04:47 GMT</pubDate><guid isPermaLink="false">Reviewed: ASP.NET MVC 3 Application Upgrader (Feb 17, 2012) 20120217030447P</guid></item><item><title>Reviewed: WCF REST Starter Kit Preview 2 (Feb 15, 2012)</title><link>http://aspnet.codeplex.com/releases/view/24644#ReviewBy-Odirk0</link><description>Rated 3 Stars &amp;#40;out of 5&amp;#41; - just wanna to learn first</description><author>Odirk0</author><pubDate>Wed, 15 Feb 2012 17:00:38 GMT</pubDate><guid isPermaLink="false">Reviewed: WCF REST Starter Kit Preview 2 (Feb 15, 2012) 20120215050038P</guid></item><item><title>Patch Uploaded: #11489</title><link>http://aspnet.codeplex.com/SourceControl/list/patches</link><description>
&lt;p&gt;&lt;a href='http://www.codeplex.com/site/users/view/pgambling'&gt;pgambling&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Proposed implementation to add an MD5 checksum to the sprite image filename. The feature is enabled by the following setting in &amp;#34;App_Sprites&amp;#92;settings.xml&amp;#34;&lt;br /&gt;&amp;#60;MD5SumInFileName&amp;#62;true&amp;#60;&amp;#47;MD5SumInFileName&amp;#62;&lt;br /&gt;&lt;br /&gt;When MD5SumInFileName is &amp;#34;true&amp;#34;, the generated sprite image filename has the following format&amp;#58; &amp;#34;sprite&amp;#123;sprite number&amp;#125;-&amp;#123;MD5 sum of image&amp;#125;.&amp;#123;file extension&amp;#125;&amp;#34;&lt;/p&gt;</description><author>pgambling</author><pubDate>Wed, 15 Feb 2012 15:31:07 GMT</pubDate><guid isPermaLink="false">Patch Uploaded: #11489 20120215033107P</guid></item><item><title>Created Issue: Sprite and Image Optimization Framework - Add support for a hash in sprite image filename [9920]</title><link>http://aspnet.codeplex.com/workitem/9920</link><description>Including a hash checksum of the generated sprite in its filename would prevent client browsers from loading an outdated image from the cache.&lt;br /&gt;&lt;br /&gt;Use case&amp;#58;&lt;br /&gt;1&amp;#41; Contents of App_Sprites is updated.&lt;br /&gt;2&amp;#41; New combined sprite image and css files are generated&lt;br /&gt;3&amp;#41; Browser downloads the updated CSS file which is minified, combined, compressed, and versioned along with other css files for the site using another library, Combres&lt;br /&gt;4&amp;#41; The CSS still references sprite0.png which was previously cached by the browser.&lt;br /&gt;5&amp;#41; Navigating to the site, loads the updated CSS, but uses an outdated sprite image and thus the sprites are all out of sync until the user actually refreshes the page.&lt;br /&gt;</description><author>pgambling</author><pubDate>Wed, 15 Feb 2012 14:56:56 GMT</pubDate><guid isPermaLink="false">Created Issue: Sprite and Image Optimization Framework - Add support for a hash in sprite image filename [9920] 20120215025656P</guid></item><item><title>Created Issue: Unable to use WCF REST Starter Kit Preview 2 [9917]</title><link>http://aspnet.codeplex.com/workitem/9917</link><description>Hi, I have downloaded the WCF REST Starter Kit Preview 2 MSI file. I have installed it. I am also able to refer to the DLLs found at C&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft WCF REST&amp;#92;WCF REST Starter Kit Preview 2&amp;#92;Assemblies. But as soon as I build the project, I get the following error near my using statements&amp;#58;&lt;br /&gt;&lt;br /&gt;The type or namespace name &amp;#39;Http&amp;#39; does not exist in the namespace &amp;#39;Microsoft&amp;#39; &amp;#40;are you missing an assembly reference&amp;#63;&amp;#41;&lt;br /&gt;&lt;br /&gt;I have tried cleaning and rebuilding my application and even tried re installing the WCF REST Starter Kit Preview 2 but still no go.&lt;br /&gt;&lt;br /&gt;I am using Windows 7 x64 with VS 2010 Ultimate.&lt;br /&gt;</description><author>baligavinod</author><pubDate>Tue, 14 Feb 2012 15:00:52 GMT</pubDate><guid isPermaLink="false">Created Issue: Unable to use WCF REST Starter Kit Preview 2 [9917] 20120214030052P</guid></item><item><title>Created Issue: jscript outlining extension should support collapsing arrays [9900]</title><link>http://aspnet.codeplex.com/workitem/9900</link><description>Javascript arrays with nested objects cause the outlining to be difficult to use.&lt;br /&gt;Please add this to the outlining.&lt;br /&gt;e.g. the following should be able to collapse to a single line&amp;#58;&lt;br /&gt;&lt;br /&gt;var foo &amp;#61; &amp;#91;&amp;#123;&lt;br /&gt;    bar&amp;#58; true&lt;br /&gt;  &amp;#125;,&lt;br /&gt;  &amp;#123;&lt;br /&gt;    bar&amp;#58; false&lt;br /&gt;  &amp;#125;&amp;#93;&amp;#59;&lt;br /&gt;</description><author>Joshka</author><pubDate>Fri, 10 Feb 2012 01:09:42 GMT</pubDate><guid isPermaLink="false">Created Issue: jscript outlining extension should support collapsing arrays [9900] 20120210010942A</guid></item><item><title>Commented Issue: Sprite and Image Optimization Framework Preview 3 resource warning [8273]</title><link>http://aspnet.codeplex.com/workitem/8273</link><description>Debugging pages in Chrome developer tools produces warnings for sprite images along the lines of&amp;#58;&lt;br /&gt;&lt;br /&gt;data&amp;#58;text&amp;#47;html&amp;#59;base64,...&lt;br /&gt;Resource interpreted as Image but transferred with MIME type text&amp;#47;html.&lt;br /&gt;&lt;br /&gt;Not sure if this matters.&lt;br /&gt;Comments: ** Comment from web user: xgene ** &lt;p&gt;I&amp;#39;m seeing this error again on Chrome 17 and Sprite Preview 4&lt;/p&gt;</description><author>xgene</author><pubDate>Wed, 08 Feb 2012 20:19:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: Sprite and Image Optimization Framework Preview 3 resource warning [8273] 20120208081946P</guid></item><item><title>Created Issue: ".5" fails validation for double [9887]</title><link>http://aspnet.codeplex.com/workitem/9887</link><description>&amp;#34;.5&amp;#34; fails, but &amp;#34;0.5&amp;#34; passes.&lt;br /&gt;</description><author>mwhouser</author><pubDate>Mon, 06 Feb 2012 21:03:17 GMT</pubDate><guid isPermaLink="false">Created Issue: ".5" fails validation for double [9887] 20120206090317P</guid></item><item><title>Created Issue: Wrong logon URL is Generated when an application is in another virtual directory (‘mydir’) than the root. [9885]</title><link>http://aspnet.codeplex.com/workitem/9885</link><description>I run into this issue when testing the MvcMusicStore sample. It is strange as projects generated by the mvc4 wizard work as expected.&lt;br /&gt;&lt;br /&gt;Here are the settings&amp;#58;&lt;br /&gt;    &amp;#60;authentication mode&amp;#61;&amp;#34;Forms&amp;#34;&amp;#62;&lt;br /&gt;      &amp;#60;forms loginUrl&amp;#61;&amp;#34;&amp;#126;&amp;#47;Account&amp;#47;LogOn&amp;#34; timeout&amp;#61;&amp;#34;2880&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;authentication&amp;#62;&lt;br /&gt;&lt;br /&gt;The expected result is&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;localhost&amp;#58;80&amp;#47;mydir&amp;#47;Account&amp;#47;LogOn&amp;#63;ReturnUrl&amp;#61;&amp;#37;2fau&amp;#37;2fStoreManager&amp;#37;2f&lt;br /&gt;&lt;br /&gt;The actual result was&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;localhost&amp;#58;80&amp;#47;&amp;#126;&amp;#47;Account&amp;#47;LogOn&amp;#63;ReturnUrl&amp;#61;&amp;#37;2fau&amp;#37;2fStoreManager&amp;#37;2f&lt;br /&gt;That is the &amp;#8216;&amp;#126;&amp;#8217; was not mapped to the application directory.&lt;br /&gt;&lt;br /&gt;Here is the workaround&amp;#58;&lt;br /&gt;  &amp;#60;appSettings&amp;#62;&lt;br /&gt;    &amp;#60;add key&amp;#61;&amp;#34;loginUrl&amp;#34; value&amp;#61;&amp;#34;&amp;#126;&amp;#47;Account&amp;#47;LogOn&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;  &amp;#60;&amp;#47;appSettings&amp;#62;&lt;br /&gt;</description><author>naturalwalker</author><pubDate>Mon, 06 Feb 2012 16:03:02 GMT</pubDate><guid isPermaLink="false">Created Issue: Wrong logon URL is Generated when an application is in another virtual directory (‘mydir’) than the root. [9885] 20120206040302P</guid></item><item><title>Created Issue: ASP.NET MVC 3 LoadingElementDuration is not working [9879]</title><link>http://aspnet.codeplex.com/workitem/9879</link><description>Hi,&lt;br /&gt;it seems that the AjaxOptions.LoadingElementDuration attribute is not working as expected. Even if I change its value, the animation is always performed at the same speed.&lt;br /&gt;It seems that jQuery needs an integer in order to set the correct duration value, but the unobtrusive AJAX library is rendering the value as a string.&lt;br /&gt;Looking at the JavaScript code of &amp;#34;jquery.unobtrusive-ajax.js&amp;#34; I have seen this piece of code&amp;#58;&lt;br /&gt;&lt;br /&gt;duration &amp;#61; element.getAttribute&amp;#40;&amp;#34;data-ajax-loading-duration&amp;#34;&amp;#41; &amp;#124;&amp;#124; 0&amp;#59;&lt;br /&gt;&lt;br /&gt;If I change it to&amp;#58;&lt;br /&gt;&lt;br /&gt;duration &amp;#61; parseInt&amp;#40;element.getAttribute&amp;#40;&amp;#34;data-ajax-loading-duration&amp;#34;&amp;#41;&amp;#41; &amp;#124;&amp;#124; 0&amp;#59;&lt;br /&gt;&lt;br /&gt;The animation plays correctly. When it&amp;#39;s a number, the duration argument in the jQuery show function is supposed to be an integer, not a string.&lt;br /&gt;&lt;br /&gt;Please see this question on StackOverflow in order to get more details&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;stackoverflow.com&amp;#47;questions&amp;#47;8928671&amp;#47;asp-net-mvc-3-loadingelementduration-not-working&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;Luca&lt;br /&gt;</description><author>stockbreak</author><pubDate>Fri, 03 Feb 2012 20:05:11 GMT</pubDate><guid isPermaLink="false">Created Issue: ASP.NET MVC 3 LoadingElementDuration is not working [9879] 20120203080511P</guid></item><item><title>Reviewed: Dynamic Data 4.0 Samples (Feb 02, 2012)</title><link>http://aspnet.codeplex.com/releases/view/54273#ReviewBy-thuyhoangdongnai</link><description>Rated 4 Stars &amp;#40;out of 5&amp;#41; - thanks you</description><author>thuyhoangdongnai</author><pubDate>Fri, 03 Feb 2012 02:47:41 GMT</pubDate><guid isPermaLink="false">Reviewed: Dynamic Data 4.0 Samples (Feb 02, 2012) 20120203024741A</guid></item><item><title>Created Issue: Dynamic Data 4.0 Scaffold Demo is EF not LinqToSQL [9834]</title><link>http://aspnet.codeplex.com/workitem/9834</link><description>Release Notes says the Scaffold Demo is for &amp;#39;LINQ for SQL&amp;#39; when in fact is entity framework.&lt;br /&gt;</description><author>JezzaT</author><pubDate>Tue, 24 Jan 2012 11:05:50 GMT</pubDate><guid isPermaLink="false">Created Issue: Dynamic Data 4.0 Scaffold Demo is EF not LinqToSQL [9834] 20120124110550A</guid></item></channel></rss>
