Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server.Execute Error

Status
Not open for further replies.

gio2888

Technical User
Oct 26, 2000
64
US

Server object error 'ASP 0228 : 80004005'

Server.Execute Error

/legalnotices.asp, line 50

The call to Server.Execute failed while loading the page.


I have an error on a server.execute line. Can someone explained to me what the error is about.

Wayne
 
we need more then the error at hand. can you post the code in question. plus when you do specify what line is 50 as we do not know this without the entire page which can be too exstensvie to post sometimes A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
One point to consider is if the execute method behaves the same as transfer, ie

Server.transfer "PageB.asp?SomeParam=-1" Will fail because it has params specified

Server.transfer "PageB.asp" transfers to the next page correctly *and* hands the current QueryString onto the next page.
 
Thanks for the info, but I got the error fixed already. Thank You!
 
cool, any chance of posting the problem and answer to benefit others that may come across this in future?
 
I think the point is you can only use Server.execute and Server.transfer with "clean links". I mean you can't use querystrings in the instructions. I got this error trying to use Server.Execute and it got fixed when deleting the querystring.

Tip:
If you use Server.Execute you can use the variables from the original page where you requested the execute command.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top