Hidran
|
| Posted: 06/20/2002, 9:07 AM |
|
Hi,
I made a program that can show pictures, the name of the picture and the place.
I placed all this information in a database and also the URL of the picture and then on the grid I placed the URL field ( with IMAGE Taq)on the grid as HTML content.
The image is a link to another page where you could see it enlarged.
My problem is:
How can I the image Id field into the other page so I can know what picture to show and how big?
|
|
|
 |
Nicole
|
| Posted: 06/21/2002, 4:12 AM |
|
Hidran,
are you working with CC or CCS? CCStudio has special field type "image link". All you need to make it work is to select table field that stores image name (and relative path to it if necessary), select link page.
To add parameters passed try to add them in field Before Show event using code like:
ASP
form_name.urlimage_field_name.Page= "any_page.asp?id=" & form_name.field_name.Value
|
|
|
 |
|