473,383 Members | 1,815 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

Displaying Images ?

Hi All:

I have a small application that stores images either in the database or as
files (depending on the user preference). I'm in the process of providing a
web interface to this application.

1. If the images are stored in the DB then, every an image is requested, it
will need to be pulled out and a temp file created and then displayed? What
is the best way to do this?

2. If the images are stored as files, how do I ensure security? For example
if I store all the images in a folder called \database\images and that has a
file 3.tif or 3.jpg, how do I ensure that people dont point their browsers
to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam
Jul 21 '05 #1
7 2301
http://www.vbdotnetheaven.com/Code/Sept2003/2175.asp

If you store them as Binary, then they'd have to query your database to hit
the images and extract data from the stream. I think the above article
should help you, but just check for BLOB and ADO.NEt on Google, there's tons
of examples

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
Hi All:

I have a small application that stores images either in the database or as
files (depending on the user preference). I'm in the process of providing a web interface to this application.

1. If the images are stored in the DB then, every an image is requested, it will need to be pulled out and a temp file created and then displayed? What is the best way to do this?

2. If the images are stored as files, how do I ensure security? For example if I store all the images in a folder called \database\images and that has a file 3.tif or 3.jpg, how do I ensure that people dont point their browsers
to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam

Jul 21 '05 #2
Thanks for the lead.
However if I want to save the images as files, do you have any pointers on
how I can ensure that users will not be able to point their browsers to
http://mysite/imagestore/imagename and have the image come up on the
browser?

Vinay

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
Hi All:

I have a small application that stores images either in the database or as
files (depending on the user preference). I'm in the process of providing a web interface to this application.

1. If the images are stored in the DB then, every an image is requested, it will need to be pulled out and a temp file created and then displayed? What is the best way to do this?

2. If the images are stored as files, how do I ensure security? For example if I store all the images in a folder called \database\images and that has a file 3.tif or 3.jpg, how do I ensure that people dont point their browsers
to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam

Jul 21 '05 #3
You could have your src=yourpictureroutine.aspx and have your aspx file do

Response.ContentType = "image/jpeg"
mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)

Where mynewimage is a system.drawing.image from file. You could mask the
file name or put the pictures in a non-www directory and do something like
mynewimage=mgGetThumbNail(...)

Function mgGetThumbNail(strFile as string, intWidth as integer, intHeight as
integer) as system.drawing.image
Dim myBitmap As bitmap = New Bitmap(strFile)
return mybitmap.getthumbnailimage(intWidth,intHeight,noth ing,nothing)
End Function

Someone can still right click the picture and save the thumbnail. But they
won't be able to get the actual image file. If you want to keep a higher
quality but smaller size you can use something like this.

Function mgAdjustBitmap(strFile as string, intHorz as integer, intVert as
integer) as bitmap
Dim mysize as size = new size(inthorz,intVert)
Dim myBitmap As bitmap = New Bitmap(strFile)
myBitmap = new bitmap(mybitmap,mysize)
return myBitmap 'myImg
End Function
Finally, once you have the image you can add text to the graphic using
something like this (snip)

dim objGraphic as Graphics = Graphics.FromImage(objBitmap)
objGraphic.DrawString(strText,New Font("Tahoma",intFontSize),New
SolidBrush(sysColor),intHorzPos, intVertPos)
return objBitMap

Hope this helps.
I have heard that some people put clear transparent images over the page
images so someone can't right click it but that seems to be a bit extreme.

Hope this helps in some way.

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
Hi All:

I have a small application that stores images either in the database or as
files (depending on the user preference). I'm in the process of providing a web interface to this application.

1. If the images are stored in the DB then, every an image is requested, it will need to be pulled out and a temp file created and then displayed? What is the best way to do this?

2. If the images are stored as files, how do I ensure security? For example if I store all the images in a folder called \database\images and that has a file 3.tif or 3.jpg, how do I ensure that people dont point their browsers
to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam

Jul 21 '05 #4
Thanks for the pointers Mike.
At the risk of sounding daft...what do you mean by?
You could have your src=yourpictureroutine.aspx and have your aspx file do
Here's what I am trying to do:
I have an aspx page that has a list box, that has lets say 3 entries. When
the user clicks on each entry I want to show the corresponding image. These
images could be big tif files or jpg files. I want to show these images in a
new window. I've not worked a great deal with this before..hence the
confusion on my part.

Thanks!

Vinay
Response.ContentType = "image/jpeg"
mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)

Where mynewimage is a system.drawing.image from file. You could mask the
file name or put the pictures in a non-www directory and do something like
mynewimage=mgGetThumbNail(...)

Function mgGetThumbNail(strFile as string, intWidth as integer, intHeight as integer) as system.drawing.image
Dim myBitmap As bitmap = New Bitmap(strFile)
return mybitmap.getthumbnailimage(intWidth,intHeight,noth ing,nothing)
End Function

Someone can still right click the picture and save the thumbnail. But they won't be able to get the actual image file. If you want to keep a higher
quality but smaller size you can use something like this.

Function mgAdjustBitmap(strFile as string, intHorz as integer, intVert as
integer) as bitmap
Dim mysize as size = new size(inthorz,intVert)
Dim myBitmap As bitmap = New Bitmap(strFile)
myBitmap = new bitmap(mybitmap,mysize)
return myBitmap 'myImg
End Function
Finally, once you have the image you can add text to the graphic using
something like this (snip)

dim objGraphic as Graphics = Graphics.FromImage(objBitmap)
objGraphic.DrawString(strText,New Font("Tahoma",intFontSize),New
SolidBrush(sysColor),intHorzPos, intVertPos)
return objBitMap

Hope this helps.
I have heard that some people put clear transparent images over the page
images so someone can't right click it but that seems to be a bit extreme.

Hope this helps in some way.

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
Hi All:

I have a small application that stores images either in the database or as files (depending on the user preference). I'm in the process of providing
a
web interface to this application.

1. If the images are stored in the DB then, every an image is requested, it
will need to be pulled out and a temp file created and then displayed?

What
is the best way to do this?

2. If the images are stored as files, how do I ensure security? For

example
if I store all the images in a folder called \database\images and that

has a
file 3.tif or 3.jpg, how do I ensure that people dont point their

browsers to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam


Jul 21 '05 #5
I thought you where referring to images on the page. If you want images in a
new window you probably want to do a response.redirect in the onclick event
of the listbox. In that case you would not use the src= . That would only be
used for images on the page. If you're openning a new window then your image
is probably larger and higher quality. In that case, someone can just right
click it and save it to their disk. I don't think there is much you can do
about that. If you have a really high quality picture you can downgrade it
using an aspx file that calls up the image and then makes it a thumbnail or
smaller image using the info in my last post. You can also you a mask in
your code so that the user does not know the actual file name of the image
so they can't go back and try to get the base image. Hope this helps. There
was a site that had some other ideas, I will try to find it and post a link
when I get the chance.
Here is some code I use for some of my pictures. This codes does not mask
the file name but you could easily add it. Also if some of you file are tiff
then you would need to build that into the content type. I snipped this so
hopefully I got all the pieces.

sub Page_Load(sender as object, e as eventArgs)

dim strPic as string = request.querystring("_p")
dim strDesigner as string = request.querystring("_d") & ""
dim intWidth as int32 = ctype(request.querystring("_w"),int32)
dim intHeight as int32 = ctype(request.querystring("_h"),int32)
dim intQuality as int32 = ctype(request.querystring("_q"),int32)
dim myNewImage as system.drawing.image
dim intCacheTime as int32 = ctype(request.querystring("_c"),int32)
if intCacheTime > 3600 then intCacheTime = 3600

dim strFileLoc as string =
server.mappath(configurationSettings.AppSettings(" picroot"))
Response.ContentType = "image/jpeg"
if intCacheTime > 0 then
Response.Cache.SetExpires(DateTime.Now.AddSeconds( intCacheTime))
Response.Cache.SetCacheability(HttpCacheability.Pu blic)
Response.Cache.SetValidUntilExpires(True)
Response.Cache.VaryByParams("_p") = True
Response.Cache.VaryByParams("_h") = True
Response.Cache.VaryByParams("_c") = True
end if
try
select case intQuality
case is = 1
Dim bFlag as boolean = false
if intWidth = 0 then intWidth = 200
if intHeight = 0 then intHeight = 200
if strDesigner.length > 0 then bFlag = true
mynewimage = mgAdjustBitmap(strFileLoc & strPic, intWidth,
intHeight,bFlag,strDesigner)
case is = 2
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)
case is = 3
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)
dim strSaveLoc as string =
server.mappath(configurationSettings.AppSettings(" thumbroot"))
mynewimage.save(strSaveLoc & strpic,ImageFormat.Jpeg)
case is = 4
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)
dim strSaveLoc as string =
server.mappath(configurationSettings.AppSettings(" thumbroot"))
mynewimage.save(strSaveLoc & strpic,ImageFormat.Jpeg)
case else
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)

end select
mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)
mynewimage.dispose
catch
mynewimage= mggetthumbnail(strFileLoc & "npicture.jpg",240,180)

mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)
mynewimage.dispose
end try
End Sub

Function mgGetThumbNail(strFile as string, intWidth as integer, intHeight as
integer) as system.drawing.image
Dim myBitmap As bitmap = New Bitmap(strFile)
return mybitmap.getthumbnailimage(intWidth,intHeight,noth ing,nothing)
End Function

Function mgAdjustBitmap(strFile as string, intHorz as integer, intVert as
integer,bDrawTextFlag as boolean, strText as string) as bitmap

Dim mysize as size = new size(inthorz,intVert)
Dim myBitmap As bitmap = New Bitmap(strFile)
myBitmap = new bitmap(mybitmap,mysize)
if bDrawTextFlag then
myBitmap = mgDrawText(myBitmap, strText, 8,
color.blue,ctype(intHorz*.05,int32),ctype(intVert * .92,int32))
end if
return myBitmap
End Function

Function mgDrawText(objBitmap as bitmap, strText as string, intFontSize as
int32, sysColor as color, intHorzPos as int32, intVertPos as int32) as
bitmap
dim objGraphic as Graphics = Graphics.FromImage(objBitmap)
objGraphic.DrawString(strText,New Font("Tahoma",intFontSize),New
SolidBrush(sysColor),intHorzPos, intVertPos)
return objBitMap
End Function

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:%2******************@TK2MSFTNGP10.phx.gbl...
Thanks for the pointers Mike.
At the risk of sounding daft...what do you mean by?
You could have your src=yourpictureroutine.aspx and have your aspx file do

Here's what I am trying to do:
I have an aspx page that has a list box, that has lets say 3 entries. When
the user clicks on each entry I want to show the corresponding image. These images could be big tif files or jpg files. I want to show these images in a new window. I've not worked a great deal with this before..hence the
confusion on my part.

Thanks!

Vinay
Response.ContentType = "image/jpeg"
mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)

Where mynewimage is a system.drawing.image from file. You could mask the
file name or put the pictures in a non-www directory and do something like mynewimage=mgGetThumbNail(...)

Function mgGetThumbNail(strFile as string, intWidth as integer, intHeight
as
integer) as system.drawing.image
Dim myBitmap As bitmap = New Bitmap(strFile)
return mybitmap.getthumbnailimage(intWidth,intHeight,noth ing,nothing)
End Function

Someone can still right click the picture and save the thumbnail. But they
won't be able to get the actual image file. If you want to keep a higher
quality but smaller size you can use something like this.

Function mgAdjustBitmap(strFile as string, intHorz as integer, intVert

as integer) as bitmap
Dim mysize as size = new size(inthorz,intVert)
Dim myBitmap As bitmap = New Bitmap(strFile)
myBitmap = new bitmap(mybitmap,mysize)
return myBitmap 'myImg
End Function
Finally, once you have the image you can add text to the graphic using
something like this (snip)

dim objGraphic as Graphics = Graphics.FromImage(objBitmap)
objGraphic.DrawString(strText,New Font("Tahoma",intFontSize),New
SolidBrush(sysColor),intHorzPos, intVertPos)
return objBitMap

Hope this helps.
I have heard that some people put clear transparent images over the page
images so someone can't right click it but that seems to be a bit extreme.
Hope this helps in some way.

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
Hi All:

I have a small application that stores images either in the database
or as files (depending on the user preference). I'm in the process of providing
a
web interface to this application.

1. If the images are stored in the DB then, every an image is

requested, it
will need to be pulled out and a temp file created and then displayed?

What
is the best way to do this?

2. If the images are stored as files, how do I ensure security? For

example
if I store all the images in a folder called \database\images and that

has
a
file 3.tif or 3.jpg, how do I ensure that people dont point their

browsers to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam



Jul 21 '05 #6
Mike:

Thanks - the code will certainly help me understand how I can go about
trying to do what I need to do. Appreciate you taking the time to help :)

Vinay

"vMike" <Mi************@nospam.gewarren.com.delete> wrote in message
news:bn**********@ngspool-d02.news.aol.com...
I thought you where referring to images on the page. If you want images in a new window you probably want to do a response.redirect in the onclick event of the listbox. In that case you would not use the src= . That would only be used for images on the page. If you're openning a new window then your image is probably larger and higher quality. In that case, someone can just right click it and save it to their disk. I don't think there is much you can do
about that. If you have a really high quality picture you can downgrade it
using an aspx file that calls up the image and then makes it a thumbnail or smaller image using the info in my last post. You can also you a mask in
your code so that the user does not know the actual file name of the image
so they can't go back and try to get the base image. Hope this helps. There was a site that had some other ideas, I will try to find it and post a link when I get the chance.
Here is some code I use for some of my pictures. This codes does not mask
the file name but you could easily add it. Also if some of you file are tiff then you would need to build that into the content type. I snipped this so
hopefully I got all the pieces.

sub Page_Load(sender as object, e as eventArgs)

dim strPic as string = request.querystring("_p")
dim strDesigner as string = request.querystring("_d") & ""
dim intWidth as int32 = ctype(request.querystring("_w"),int32)
dim intHeight as int32 = ctype(request.querystring("_h"),int32)
dim intQuality as int32 = ctype(request.querystring("_q"),int32)
dim myNewImage as system.drawing.image
dim intCacheTime as int32 = ctype(request.querystring("_c"),int32)
if intCacheTime > 3600 then intCacheTime = 3600

dim strFileLoc as string =
server.mappath(configurationSettings.AppSettings(" picroot"))
Response.ContentType = "image/jpeg"
if intCacheTime > 0 then
Response.Cache.SetExpires(DateTime.Now.AddSeconds( intCacheTime))
Response.Cache.SetCacheability(HttpCacheability.Pu blic)
Response.Cache.SetValidUntilExpires(True)
Response.Cache.VaryByParams("_p") = True
Response.Cache.VaryByParams("_h") = True
Response.Cache.VaryByParams("_c") = True
end if
try
select case intQuality
case is = 1
Dim bFlag as boolean = false
if intWidth = 0 then intWidth = 200
if intHeight = 0 then intHeight = 200
if strDesigner.length > 0 then bFlag = true
mynewimage = mgAdjustBitmap(strFileLoc & strPic, intWidth,
intHeight,bFlag,strDesigner)
case is = 2
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)
case is = 3
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)
dim strSaveLoc as string =
server.mappath(configurationSettings.AppSettings(" thumbroot"))
mynewimage.save(strSaveLoc & strpic,ImageFormat.Jpeg)
case is = 4
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)
dim strSaveLoc as string =
server.mappath(configurationSettings.AppSettings(" thumbroot"))
mynewimage.save(strSaveLoc & strpic,ImageFormat.Jpeg)
case else
if intWidth = 0 then intWidth = 90
if intHeight = 0 then intHeight = 90
mynewimage = mggetthumbnail(strFileLoc & strPic,intWidth,intHeight)

end select
mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)
mynewimage.dispose
catch
mynewimage= mggetthumbnail(strFileLoc & "npicture.jpg",240,180)

mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)
mynewimage.dispose
end try
End Sub

Function mgGetThumbNail(strFile as string, intWidth as integer, intHeight as integer) as system.drawing.image
Dim myBitmap As bitmap = New Bitmap(strFile)
return mybitmap.getthumbnailimage(intWidth,intHeight,noth ing,nothing)
End Function

Function mgAdjustBitmap(strFile as string, intHorz as integer, intVert as
integer,bDrawTextFlag as boolean, strText as string) as bitmap

Dim mysize as size = new size(inthorz,intVert)
Dim myBitmap As bitmap = New Bitmap(strFile)
myBitmap = new bitmap(mybitmap,mysize)
if bDrawTextFlag then
myBitmap = mgDrawText(myBitmap, strText, 8,
color.blue,ctype(intHorz*.05,int32),ctype(intVert * .92,int32))
end if
return myBitmap
End Function

Function mgDrawText(objBitmap as bitmap, strText as string, intFontSize as
int32, sysColor as color, intHorzPos as int32, intVertPos as int32) as
bitmap
dim objGraphic as Graphics = Graphics.FromImage(objBitmap)
objGraphic.DrawString(strText,New Font("Tahoma",intFontSize),New
SolidBrush(sysColor),intHorzPos, intVertPos)
return objBitMap
End Function

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:%2******************@TK2MSFTNGP10.phx.gbl...
Thanks for the pointers Mike.
At the risk of sounding daft...what do you mean by?
You could have your src=yourpictureroutine.aspx and have your aspx file
do

Here's what I am trying to do:
I have an aspx page that has a list box, that has lets say 3 entries. When
the user clicks on each entry I want to show the corresponding image. These
images could be big tif files or jpg files. I want to show these images in a
new window. I've not worked a great deal with this before..hence the
confusion on my part.

Thanks!

Vinay
Response.ContentType = "image/jpeg"
mynewimage.Save(Response.OutputStream, ImageFormat.Jpeg)

Where mynewimage is a system.drawing.image from file. You could mask

the file name or put the pictures in a non-www directory and do something

like mynewimage=mgGetThumbNail(...)

Function mgGetThumbNail(strFile as string, intWidth as integer, intHeight
as
integer) as system.drawing.image
Dim myBitmap As bitmap = New Bitmap(strFile)
return mybitmap.getthumbnailimage(intWidth,intHeight,noth ing,nothing)
End Function

Someone can still right click the picture and save the thumbnail. But

they
won't be able to get the actual image file. If you want to keep a higher quality but smaller size you can use something like this.

Function mgAdjustBitmap(strFile as string, intHorz as integer, intVert

as integer) as bitmap
Dim mysize as size = new size(inthorz,intVert)
Dim myBitmap As bitmap = New Bitmap(strFile)
myBitmap = new bitmap(mybitmap,mysize)
return myBitmap 'myImg
End Function
Finally, once you have the image you can add text to the graphic using
something like this (snip)

dim objGraphic as Graphics = Graphics.FromImage(objBitmap)
objGraphic.DrawString(strText,New Font("Tahoma",intFontSize),New
SolidBrush(sysColor),intHorzPos, intVertPos)
return objBitMap

Hope this helps.
I have heard that some people put clear transparent images over the page images so someone can't right click it but that seems to be a bit extreme.
Hope this helps in some way.

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
> Hi All:
>
> I have a small application that stores images either in the database or
as
> files (depending on the user preference). I'm in the process of

providing
a
> web interface to this application.
>
> 1. If the images are stored in the DB then, every an image is

requested, it
> will need to be pulled out and a temp file created and then displayed? What
> is the best way to do this?
>
> 2. If the images are stored as files, how do I ensure security? For
example
> if I store all the images in a folder called \database\images and

that has
a
> file 3.tif or 3.jpg, how do I ensure that people dont point their

browsers
> to http://mysite/database/images/3.jpg ?
>
> Any pointers would be very helpful :)
>
> TIA
>
> Vinay
> vi******@nospam.yahoo.com.nospam
>
>



Jul 21 '05 #7
Here a link to a site that has some other idea.

http://www.htmlite.com/faq010.php

"Vinay" <vi*************@nospam.yahoo.com> wrote in message
news:Or**************@TK2MSFTNGP10.phx.gbl...
Hi All:

I have a small application that stores images either in the database or as
files (depending on the user preference). I'm in the process of providing a web interface to this application.

1. If the images are stored in the DB then, every an image is requested, it will need to be pulled out and a temp file created and then displayed? What is the best way to do this?

2. If the images are stored as files, how do I ensure security? For example if I store all the images in a folder called \database\images and that has a file 3.tif or 3.jpg, how do I ensure that people dont point their browsers
to http://mysite/database/images/3.jpg ?

Any pointers would be very helpful :)

TIA

Vinay
vi******@nospam.yahoo.com.nospam

Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Ian Davies | last post by:
Hello Im having problems displaying my images as thumbnails in a table. My code for producing the new width and height from the original image is as follows...
2
by: Woodmon | last post by:
I'm observing issue with linked images not displaying in either Firefox 1.5b2 or IE6 when running on Win XP (they display fine in either browser on W2k). Example problem HTML is: <a...
3
by: Dalan | last post by:
At first I was not certain what could cause Access 97 from displaying most jpeg images, but not all. After further testing, it seemed that all original images of less than 275 pixels per inch or...
1
by: tshad | last post by:
Is there some reason why the Hyperlink in a DataGrid will not show an image? I have a datagrid with the following: <asp:TemplateColumn visible="false" HeaderText="Skills"> <itemtemplate>...
1
by: David Lozzi | last post by:
Hello, I'm wondering whats the best method to use for displaying several photos' thumbnails. One method I know is to dynamically resize the photo at the time the page is loaded. What does this...
10
by: gnewsgroup | last post by:
I've googled and tried various approaches, but could not resolve this problem. The article at MSDN: Displaying Images in a GridView Column only presents a simple case where all data (including the...
5
by: Tom | last post by:
VS 2003/C# Have a axWebBrowser control that will not render images. Originally our app was just launching IE7 to display an HTML page. The bitmap images were not displaying - path was correct...
4
by: redpears007 | last post by:
Hi Again, Throwing this one out to you again as i am not getting anywhere and can find little to no information out there. I am currently displaying images (Jpegs) in access via the routine...
7
by: Sonasang | last post by:
Hi , I am creating a web page in ASP. I will place some images in the folder, The images placed in the folder should be disaplayed. I am having the two button in the web page if I click next...
1
by: littlealex | last post by:
IE6 not displaying text correctly - IE 7 & Firefox 3 are fine! Need some help with this as fairly new to CSS! In IE6 the text for the following page doesn't display properly - rather than being...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.