Xeneis
|
| Posted: 08/23/2002, 10:11 AM |
|
Hello,
Hope I'm wrong about it but, I was not able to define a row as I wanted, URL or image.
Firstly, I wanted to show the text on my field to point at a certain URL, trying all the possible combinations between URL, show HTM etc. The link displayed anyway a path to my CGI where the PERL scripts reside.
Sencond, I was not able to show a field as a pure image, as it woul read it form a certain URL and effectively show up as an image, also using pure HTML with a link on it and declaring it as the datatype of the field into CC i.e.:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Xeneis">
<meta name="GENERATOR" content="Mozilla/4.7 [en] (WinNT; I) [Netscape]">
<title>test image</title>
</head>
<body>
<a href="http://192.168.0.107/images/warning.gif">This is a test</a>
</body>
</html>
Am I wrong or this is an impossible task to perform with CodeCharge so, must be necessary to upgrade to CodeCharge Studio ?
Thanks.
Xeneis.
|
|
|
 |
Martin
|
| Posted: 08/23/2002, 10:45 AM |
|
Try this.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Xeneis">
<meta name="GENERATOR" content="Mozilla/4.7 [en] (WinNT; I) [Netscape]">
<title>test image</title>
</head>
<body>
<A HREF="Where ever you will.com"><IMG SRC="http://192.168.0.107/images/warning.gif" WIDTH="25" HEIGHT="25" BORDER="0">This is a Test</A>
</body>
</html>
Martin
|
|
|
 |
Xeneis
|
| Posted: 08/26/2002, 3:54 AM |
|
This may also be okay:
<a href="http://192.168.0.107/images/warning.gif"><IMG SRC="http://192.168.0.107/images/warning.gif" BORDER=0
The problem is: how to figure out the above (or any) added HTML is I only wish to add only my warning.gif into the DB during the data input phase.
Could a PERL trigger (after COMMIT) be the only solution to embed the image name into the HTML code ?
Does CC Studio provides with this functionality ?
Many thanks,
X.
|
|
|
 |
|