7
Reply

What are ASHX files?

Swati Agarwal

Swati Agarwal

Nov 21, 2012
9.7k
1

    Some ASP.NET files are dynamic. They are generated with C# code or disk resources. These files do not require web forms. Instead, an ASHX generic handler is ideal. It can return an image from a query string, write XML, or any other data.

    Ashu Bahl
    November 19, 2014
    3

    .ashx files are web-handler files in asp.net programming and define IHttpHandler interface. Whenever an .ashx file is requested, ProcessRequest() method is invoked automatically. ProcessRequest() is a method where we do make changes according to our requirement. Handlers are used in URL routing, Image handling, binary data handling etc. as it support backward compatibility.

    Anil Kumar
    November 23, 2012
    3

    .ashx are the resource files.

    sajidlkhan lodi
    February 19, 2015
    1

    .ashx file means generic handler files.it use full for retriving images,documents.

    N Vinodh
    December 20, 2014
    1

    ashx is handler file which can retrive data using webservices or json

    Awadhesh Jha
    December 13, 2016
    0

    .ashx files: generic handler files

    Ashish Srivastava
    July 08, 2016
    0

    Handler Files in ASP.NET

    Prakriti Goyal
    May 20, 2014
    0