Does ASP.net 1.1 support Generic HttpHandlers?
I need to get an image from a SQL Server as a byte[], and load it to a WebControl.Image. The only seemingly good way to do it that I found is to implement IHttpHandler and handle the request accordingly.
But I'm stuck to using asp.net 1.1. Does it su开发者_开发问答pport ashx files?
The IHttpHandler interface is supported in .NET 4, 3.5, 3.0, 2.0, 1.1, 1.0.
精彩评论