Is there a way to bind a MemoryStream to asp:image control?
|
|
A handler can accept a url parameter like any other request. So instead of linking your |
||||
|
|
|
Best bet is to create an HttpHandler that would return the image. Then bind the ImageUrl property on the asp:Image to the url of the HttpHandler. Here is some code. First create the HttpHandler:
Next, just call it inside your aspx page where you are using the asp:Image.
And that is it. |
|||||||
|
|
I am assuming you need to generate dynamic images from asp.net You might be in luck http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16449 Hanselman blogged about it recently http://www.hanselman.com/blog/ASPNETFuturesGeneratingDynamicImagesWithHttpHandlersGetsEasier.aspx |
|||
|
|
|
@Will and Ben Griswald: instead of "image.aspx" use "image.ashx". It's more light-weight than a full ASP.Net Page, and it's specifically designed to handle content-types other than text/html. |
||||
|
|
|
While Databinding a MemoryStream to a Image is not possible, it could be possible to use a Label/GenericControl, some Code and the data URI scheme to embed Images in Pages, but there are severe issues with that approach:
The better Approach is to use a separate "Image.aspx" Page which takes and outputs your MemoryStream, kinda like I did in my Photo Album software that i've created when I started learning ASP.net: (Don't laugh, that was my first attempt at ASP.net :-) Edit: Agreed on ASHX, the code above is just to show one sample implementation. When I come around to update the Photo Album, it will use ASHX for that. |
||||
|
|
|
Nope. But you can create a special page to stream that image out. First, you set the URL of the image to the page that performs the streaming, including some url parameters that let you know where to get the image:
in GetImage.aspx, you get the filename (or whatever) from the URL, load the image in your MemoryStream, and then write the content of that memory stream directly to the HttpResponse:
|
|||
|
|
|
@yapiskan - I refactored the code where you can pass an id to it. I think you can take it from here. |
|||
|
|
|
You can use Telerik's BinaryImage control for ASP.net. More info in here: http://www.telerik.com/products/aspnet-ajax/binaryimage.aspx |
|||
|
|
|
For me it was necessary to add "buffer="false" to the @Page. Otherwise I would keep getting the same picture all the time... |
|||
|
|
