![]() |
Sergey Kornilov admin 2/29/2004 |
You can use the following HTML code to open a link in new window <a href="..." target=_blank>...</a>
|
A
|
arx author 2/29/2004 |
I've used this code in a normal html page for a link, but when I tried this in ASPRunner I didn't get it to work. If I have a field that is a link in my ASPRunner generated page, how do I get it to open in a new window? |
![]() |
Sergey Kornilov admin 2/29/2004 |
Find a section in ...list.asp file that displays hyperlink field: |
A
|
arx author 3/26/2004 |
This opened up my link in a new page, but now my database only shows 1 record per page even though it says there's 37 records in all. Anything else I have to do? |
A
|
arx author 3/26/2004 |
Sergey; |
![]() |
swat 4/7/2004 |
Find a section in ...list.asp file that displays hyperlink field: <% if IsBinaryField(rsData.Fields("FieldName")) then Response.Write CreateImageControl(rsData, "FieldName") else Response.Write ProcessLargeText(GetData(rsData.Fields("FieldName"), "Hyperlink")) end if %> and replace it with: <% Response.Write "a href=""" & GetData(rsData.Fields("FieldName"), "") & """>" & GetData(rsData.Fields("FieldName"), "") & "</a>" %>
|
![]() |
Sergey Kornilov admin 4/11/2004 |
Swat, |
![]() |
swat 4/12/2004 |
ok- Response.Write "<a href=""http://" & GetData(rsData.Fields("FieldName"), "") & """ target=_blank>" & GetData(rsData.Fields("FieldName"), "") & "</a>"
|