Simon
|
| Posted: 07/26/2002, 1:49 PM |
|
Hi - I want to create a link that takes the browser to a URL outside of the Codecharge project. I can do it by messing with the templates directly, but how do I do it from inside Codecharge? For example, my header has a menu to get around the project, but what if I want to send the browser off to AOL - how do I get my link to AOL in there?
Thanks!
Simon
|
|
|
 |
Nicole
|
| Posted: 07/30/2002, 12:18 AM |
|
Simon,
You can build the link manually. The solution works for CC and CCS. Add Label type field to the page/form and set its content type to HTML. Then in Before Show event assign it any value you want.
CC (asp)
fldfield1 = "<a href = 'http://www.codecharge.com'>Click Here</a>"
CCS (asp)
form_name.field_name.Value = "<a href = 'http://www.codecharge.com'>Click Here</a>"
|
|
|
 |
Nicole
|
| Posted: 07/30/2002, 12:18 AM |
|
Simon,
You can build the link manually. The solution works for CC and CCS. Add Label type field to the page/form and set its content type to HTML. Then in Before Show event assign it any value you want.
CC (asp)
fldfield1 = "<a href = 'http://www.codecharge.com'>Click Here</a>"
CCS (asp)
form_name.field_name.Value = "<a href = 'http://www.codecharge.com'>Click Here</a>"
|
|
|
 |
Nicole
|
| Posted: 07/30/2002, 12:18 AM |
|
Simon,
You can build the link manually. The solution works for CC and CCS. Add Label type field to the page/form and set its content type to HTML. Then in Before Show event assign it any value you want.
CC (asp)
fldfield1 = "<a href = 'http://www.codecharge.com'>Click Here</a>"
CCS (asp)
form_name.field_name.Value = "<a href = 'http://www.codecharge.com'>Click Here</a>"
|
|
|
 |
|