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> …

Telerik RadList Box Checkbox Items check all or uncheck all

Aspx page: I bound the lstLocations dynamically. So it look like as below. <telerik:RadListBox ID=”lstLocations” runat=”server” CheckBoxes=”true” Width=”520px” Height=”130px”> </telerik:RadListBox> // Select All checkbox buttons <asp:CheckBox CssClass=”CBFull” ID=”chkSelectAll” runat=”server” Text=”Select All” onclick=”javascript:return ToggleAllLocations(this);” /> // Add below function in javascript function function ToggleAllLocations(checkBox) { //ctl00_ContentPlaceHolder1_RadDockLocFilter_C_lstLocations is a client id of radlistbox var listbox = $find(“ctl00_ContentPlaceHolder1_RadDockLocFilter_C_lstLocations”); …

How to read RSS feed using Jquery

Click here download latest plugin Getting Started First include the jQuery and zRSSFeed libraries. <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js” type=”text/javascript”></script> <script src=”jquery.zrssfeed.min.js” type=”text/javascript”></script> Add a DIV tag where you wish the feed to display and give it an ID. There is no need to specify a class, this will be added. <div id=”test”></div> Now add the script to …

LinkedIn authentication integration

For LinkedIn Authentication I have utilized LinkedIn Rest API which use oAuth 1.0 to authorize users and begin making REST API calls using any programming language. Complete understanding tutorials are placed at https://developer.linkedin.com/documents/oauth-overview Following are the steps to implement LinkedIn Authentication in ASP.Net Step 1 Installations Install Hammock Library from CodePlex.com, Hammock is a REST …