This topic is locked

View As Hyperlink problem on Printer Friendly Pages

2/22/2006 2:29:13 PM
ASPRunnerPro General questions
B
BrettD author

I am using ASPRunner Professional v3.2
I have a field in the database that I have selected to view as a hyperlink, with a specified prefix URL (the database field is a part number, which gets appended at the end of the URL). The hyperlinks are generated properly on the _list.asp and _view.asp pages, but not generated properly on the printer-friendly version of the page (i.e. the _print.asp pages). It acts like the URL prefix I specified in my project isn't being used on the printer-friendly page.
An example of the hyperlink on the pages that do work:

https://cribsearch.mysite.com/item.asp?sid=...tem=0024%207634
and the same link on the printer-friendly page:

http://mysite.com/maint/spareparts/0024%207634
The ASPRunner application resides in the "/maint/spareparts" folder of my domain.

The URL prefix I have specified in the project is "https://cribsearch.mysite.com/item.asp?sid=cs02&item=";
Any ideas?

B
BrettD author 3/1/2006

I am using ASPRunner Professional v3.2

I have a field in the database that I have selected to view as a hyperlink, with a specified prefix URL (the database field is a part number, which gets appended at the end of the URL). The hyperlinks are generated properly on the _list.asp and _view.asp pages, but not generated properly on the printer-friendly version of the page (i.e. the _print.asp pages). It acts like the URL prefix I specified in my project isn't being used on the printer-friendly page.
An example of the hyperlink on the pages that do work:

https://cribsearch.mysite.com/item.asp?sid=...tem=0024%207634
and the same link on the printer-friendly page:

http://mysite.com/maint/spareparts/0024%207634
The ASPRunner application resides in the "/maint/spareparts" folder of my domain.

The URL prefix I have specified in the project is "https://cribsearch.mysite.com/item.asp?sid=cs02&item=";
Any ideas?


I have upgraded to the new version 4.0 of ASPRunnerPro and still have the same problem. Fields setup to display as a hyperlink (using a static prefix) do not get setup properly on the Printer Friendly view of the page. What code should I modify to correct this?

Sergey Kornilov admin 3/1/2006

Brett,
thank you for pointing me to this bug.

We'll fix it in the next ASPRunnerPro update.
To make your pages working please do following:

open source/print.asp file and replace all rsDetails with rs.

B
BrettD author 3/1/2006

Brett,

thank you for pointing me to this bug.

We'll fix it in the next ASPRunnerPro update.
To make your pages working please do following:

open source/print.asp file and replace all rsDetails with rs.


That was simple enough... that change solved my problem.

Thanks Sergey!