Top "Ashx" questions

ASP.

.aspx vs .ashx MAIN difference

What are the differences between .aspx and .ashx pages? I use ashx now when I need to handle a request …

asp.net service ashx
ASP.NET - Passing JSON from jQuery to ASHX

I'm trying to pass JSON from jQuery to a .ASHX file. Example of the jQuery below: $.ajax({ type: "POST", url: "/…

asp.net ajax ashx
PDF Handler : content-disposition filename

I am outputting a PDF file in a Web browser (IE8) HttpContext.Response.writefile(fileName) and it works great. When …

handler filenames ashx content-disposition save-as
Display Image using ashx Handler

I have the following image in my aspx page <td> <asp:Image ID="LargeImage" runat="server" Height="100" …

c# ashx
how to call ASHX handler and getting the result back

I have created a Handler which return integer value after doing some database work. i would like to know how …

c# asp.net ashx
file download by calling .ashx page

I'm requesting .ashx page from Master page client side script (Jquery) which has a code to download a PDF file. …

asp.net jquery ashx
jQuery ajax post to web service

$(document).ready(function() { $.ajax({ type: "POST", url: "/getprojects.ashx", data: "<formData client=\"\" year=\"\" categories=\"\" tags=\"\" freeText=\"\" count=\"34\" page=\"1\">&…

jquery xml ajax web-services ashx
How to use Generic Handlers (ASHX) in ASP.NET MVC?

I need a image generator in my ASP.NET MVC application, but I don't know if it is possible to …

.net asp.net asp.net-mvc httphandler ashx
file upload using jquery ajax and asp.net handler

I am trying hard to get this working but i ma getting error while uploading file. ASPX <asp:FileUpload …

asp.net jquery file-upload ashx
How to get the QueryString from an ashx file?

There is an ashx file containing "ProcessRequest(HttpContext context)" method which gets triggered automatically. When and how does it get …

asp.net httpcontext ashx request.querystring