Inserting signature bitmap file in an asp

J

Jack

Hi
I am trying to build a asp page where signature bitmap file needs to be
inserted from a directory. The path of the file location is in one of the
backend Access database fields. I would like to know if there is any
knowledge based article related to this kind of issues. I have no idea where
to start on this. Any help is appreciated. Thanks.
 
P

Phill. W

I am trying to build a asp page where signature bitmap file needs to be
inserted from a directory.

Bitmaps and "The Web" don't play well together.
Use a different image format.
The path of the file location is in one of the backend Access
database fields.

So you need to create an HTML IMG tag, pointing to the location
specified by the database field, /something/ like

Dim rs ' as RecordSet
Set rs = FunctionThatRetrievesYourDataInARecordset()

Response.Write "<img " _
& "src='" & rs.Fields("imagepath").Value & "' " _
& "class='SomeCssStyleName' " _
& ">"

rs.Close()

HTH,
Phill W.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,143
Latest member
DewittMill
Top