parsec
Posts: 9
|
| Posted: 04/19/2006, 4:52 AM |
|
can some one please help how to include the "http://" before my "www.url.com" so the link will be " http://www.url.com
my data in the url field looks like this www.url.com
I know I can iclude the http:// in that field but it will very helpfull to learn how to do this in the CCS
thank you
|
 |
 |
Joe
|
| Posted: 04/20/2006, 7:20 AM |
|
easy way to do it is to just open up the html part and add "http://" before the link control. I'm sure their a another way to do this,,,,,
Example
<a href="{test}">Test</a>
NEW
<a href="http://{test}">Test</a>
|
|
|
 |
parsec
Posts: 9
|
| Posted: 04/20/2006, 3:44 PM |
|
Hi Thank you
this is what I had to add to make it work
<td><a href="http://{HomePage}{HomePage_Src}">{HomePage}</a> </td>
but my links are active in the 1st page only when I navigate to second page etc they don't link?
Thank you
|
 |
 |
parsec
Posts: 9
|
| Posted: 04/20/2006, 5:38 PM |
|
I got after all Thank you
<td><a href="http://{HomePage}"target="_blank" "{HomePage_Src}">{HomePage}</a> </td>
|
 |
 |
|