jg1130
Posts: 6
|
| Posted: 03/30/2006, 8:16 PM |
|
I am using the following code (before show event) in a project:
fldaddress="<a href=""http://maps.google.com/maps?oi=map&q=" & fldaddress & """>" & fldaddress & "</a>"
I would like to open the results in a new window. I've placed target="_blank" within the code and it's not working. Does anyone have experience using target="_blank" with the above type of url. I'm using CC and ASP.
Thanks,
Juan
|
 |
 |
jg1130
Posts: 6
|
| Posted: 03/31/2006, 3:52 AM |
|
I got it working by placing target=_blank before href, fldaddress="<a target=_blank href=""http://maps.google.com/maps?oi=map&q=" & fldaddress & """>" & fldaddress & "</a>" I found that when coding html things have to be done just a little different with CC.
Juan
|
 |
 |
|