views:

47

answers:

1

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 support ashx files?

+1  A: 

The IHttpHandler interface is supported in .NET 4, 3.5, 3.0, 2.0, 1.1, 1.0.

Darin Dimitrov
All versions, then! Thanks!
jehuty