7
Reply

What are ASHX files?

Swati Agarwal

Swati Agarwal

11 years ago
9.7k
0
Reply

    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
    9 years ago
    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
    11 years ago
    3

    .ashx are the resource files.

    sajidlkhan lodi
    9 years ago
    1

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

    N Vinodh
    9 years ago
    1

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

    Awadhesh Jha
    7 years ago
    0

    .ashx files: generic handler files

    Handler Files in ASP.NET

    Prakriti Goyal
    10 years ago
    0