smccord
|
| Posted: 07/09/2002, 5:20 AM |
|
I am using cc2. I can get my links to work OK, but I would like to have them open in a NEW window. I am outputing code with ASP 2 (no templates). Any suggestions on this problem for a newbie?
|
|
|
 |
Alex Alexapolsky
|
| Posted: 07/09/2002, 5:30 AM |
|
Specify target=_blank attribute for this link in Before Show event
|
|
|
 |
smccord
|
| Posted: 07/10/2002, 2:58 AM |
|
What it look like. fldurl="target=_blank" ?????
|
|
|
 |
Nicole
|
| Posted: 07/10/2002, 5:46 AM |
|
Hello,
No, please follow the steps to create url link manually:
1. add Label type field to the form and select html flag in its properties;
2. create Before Show event like:
fldfield_name = "<a href = '"& fldfield_name &"' target = '_blank'>"& fldfield_name &"</a>"
|
|
|
 |
|