Which interface is implemented to create HTTP handlers in an ASP.NET application?
Explanation
To develop HTTP handlers in ASP.NET, the IHttpHandler interface must be implemented. This interface defines the contract for processing HTTP web requests. Other options like IHttpHandlerFactory are related but not directly used to create handlers.