I built an application in ASPRunner 6.2 which works beautifully. I then decided to secure it using table-based security.
Now I get an error message as follows:
Response object error 'ASP 0158 : 80004005'
Missing URL
/include/aspfunctions.asp, line 1158
A URL is required.
If I remove security, the application runs fine but I am unable to implement any form of login without this error appearing.
I have other ASPRunner applications running on the same server with table-based security. I also modified line 1158 of aspfunctions.asp as follows:
From
response.Redirect trim(mid(str,p+1))
To
Response.Write("|" & trim(mid(str,p+1)) & "|"): Response.End
The output was |menu.asp|
Help!
Bob