Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   display image from database in PocketPC ASP Web Mobile (http://www.velocityreviews.com/forums/t83259-display-image-from-database-in-pocketpc-asp-web-mobile.html)

Nicolas 07-21-2004 08:20 PM

display image from database in PocketPC ASP Web Mobile
 
How do I display an image into the image webmobile control when the image is
stored in an SQL database as image type field

I got a file (page1.aspx) with the control (img_logo2) and this call
Me.img_logo2.ImageUrl = "StreamImage.aspx?ItemID=" & dbTable.Rows(0)("ID")

Then I got this other file (page2.aspx) which return this

iItem.SelectOne(Request.QueryString("ID"))

Response.ContentType = "image/gif"

Response.BinaryWrite(iItem.Photo1)

I know that it get the information correctly but the image got the red cross
instead of the image



Thanks for the help



Nicolas 07-21-2004 08:35 PM

Re: display image from database in PocketPC ASP Web Mobile
 
I need to sleep a bit I was passing the wrong querystring ItemID where it
should be ID
Anyway now it is working fine
Sorry

"Nicolas" <nliebel@hotmail.com> wrote in message
news:eaZU9A2bEHA.3636@TK2MSFTNGP10.phx.gbl...
> How do I display an image into the image webmobile control when the image

is
> stored in an SQL database as image type field
>
> I got a file (page1.aspx) with the control (img_logo2) and this call
> Me.img_logo2.ImageUrl = "StreamImage.aspx?ItemID=" & dbTable.Rows(0)("ID")
>
> Then I got this other file (page2.aspx) which return this
>
> iItem.SelectOne(Request.QueryString("ID"))
>
> Response.ContentType = "image/gif"
>
> Response.BinaryWrite(iItem.Photo1)
>
> I know that it get the information correctly but the image got the red

cross
> instead of the image
>
>
>
> Thanks for the help
>
>





All times are GMT. The time now is 12:30 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57