Response object error 'ASP 0158 : 80004005' Missing URL /<file>.asp, line <line> A URL is required. or Response object, ASP 0158 (0x80004005) A URL is required. /<file>.asp, line <line> |
This is usually caused by an empty parameter to the Response.Redirect call. Instead of the following code:
<% Response.Redirect(variable_that_holds_URL) %> |
Use the following code, temporarily, to debug:
<% Response.Write(variable_that_holds_URL) Response.End %> |