This topic is locked

Over wrote project

11/8/2006 2:15:31 PM
ASPRunnerPro General questions
T
toolpusher author

Hi
I created a project some time ago that works great except for one mistake and I over wrote the project and cant seem to recreate it. The problem I have is on a field that hyperlinks to website, I want it to open in a new window rather than in the same window. I have other fields that do this fine I must have forgot to tick the box when I was creating this project. Is their any easy way just to edit the code on the asp pages rather than trying to create the whole project again.
regards
TP

Alexey admin 11/9/2006

Hi,
you need to find GetHyperlink function in include\commonfuntions.asp file.

Find this snippet there:

if strField="MyField" then

Target = ""

and modify it this way:

if strField="MyField" then

Target = " target=_blank "