12

What is an .ashx file in asp.net?

Ryan Gates
  • 4,501
  • 6
  • 50
  • 90
Domnic
  • 3,817
  • 9
  • 40
  • 60

2 Answers2

9

It is an ASP.Net web handler file.

Read Generic Handlers (ASHX Files)

What is an ASHX file Handler or web handler?

rahul
  • 184,426
  • 49
  • 232
  • 263
2

It's for an ASP.NET handler as opposed to a page. For example, I use handlers to respond to Google Wave requests in my .NET Robot API.

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194