[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webcontrols

Re: Image rendered from a custom control

bobben

2/6/2004 8:34:00 AM

I figured it out....sort of.... It seems that this can be solved using the
tag:
<img src="data:image/gif;base64,'.<base64encodedImageString>.'

This is however only supported by 4.01 compliant browsers (or something
like that) AND IE is not compliant.

Great! I see that this is supported in ASP.Net 2.0 with the Webresource
feature.... just have to wait.



Thanks anyway!
Børge

"bobben" <bobben@nospam.com> wrote in message
news:OSJeHnw6DHA.2472@TK2MSFTNGP10.phx.gbl...
> Does anyone know if it is possible to emit a imagebutton with a bitmap
> within a custom control.
> In other words; I want the custom control to be selfcontained, and not
have
> to rely on a aspx page to be able to display an imagebutton with a
> dynamically stored image. (From a database or loaded from a resource
file.)
>
> All I can find is this:
>
> (...)
> MemoryStream tempStream = new MemoryStream();
>
> bitmap.Save(Page.Response.OutputStream,ImageFormat.Gif );
>
> But then I am relying on a separate aspx page as a source for my
> imagebutton.
>
> Anyone knows any good techniques?
>
> Børge
>
>