Windows store privacy statement

I got the error from Microsoft while I was submit the app. The error is, “The app has declared access to network capabilities and no privacy statement was provided in the Windows Settings Charm.” The sad part is that this is so easy to fix. First you will need to create a new directory Privacy …

How to add reference System.Web.Optimization

The Microsoft.Web.Optimization package is now obsolete. With the final release of ASP.NET (MVC) 4 you should install the Microsoft ASP.NET Web Optimization Framework: Install the package from nuget: Right click on References, Select Manage Nuget Packages. Type Microsoft.AspNet.Web.Optimization in search box and press enter you will get the package. Click on install. Create and configure …

HTTP Error 405.0 – Method Not Allowed error while trying to make a DELETE request to a .ashx

Here’s the final web.config section. The thing I needed to add I was missing was changing the staticFileHandler from using “all verbs” to all of them spelled out. <?xml version=”1.0″ encoding=”utf-8″?> <configuration> <appSettings> <add key=”StorageRoot” value=”C:\temp\”/> </appSettings> <system.web> <compilation debug=”true” targetFramework=”4.0″ /> <httpRuntime maxRequestLength=”2147480000″ executionTimeout=”3600″/> <pages controlRenderingCompatibilityVersion=”3.5″ clientIDMode=”AutoID”/> </system.web> <system.webServer> <modules> <remove name=”WebDAVModule” /> </modules> …