This topic is locked

404 page not found with 'more' link

12/15/2006 3:14:05 PM
ASPRunnerPro General questions
S
semleon author

(using 4.1 build 181)
I have a site on our company Intranet.

Ive got 4 columns that are large text areas. two of the "More.." links on that table work, two of them dont.

On the other table I have addition columns that are giving the same error when clicking 'More.."
Getting a 404 error "Page not found" when I click them.
The link they are pointing to is "http://myurl/action_list.asp#
I have verifyed that this file exists. Infact it has to because some of the "More..." links work. very random.
"View" works correctly on all records

J
Jane 12/18/2006

Hi,
thank you for pointing me to this bug.

We'll fix it in the next ASPRunnerPro update.
To make your pages working please open C:/Program Files/ASPRunnerPro4.2/source/include/commonfunctions.asp file, find following code:

Function GetTableURL(table)

and replace it with this one:

Function GetTableURL(atable)

dim table

table=atable

if atable="" then table=strTableName

S
semleon author 12/20/2006

That fixed it. Thanks.