Call to Server.Execute failed while loading page
A common problem that i have faced as a beginner to ASP 3.0 is that when we use Server.Execute("/somefile.asp") and run the page an error message is been displayed that
"The call to Server.Execute failed while loading the page."
Now what i have done and error is been removed is that I have written this code
Server.Execute("somefile.asp")
Now my "somefile.asp" and Global.asa using "somefile.asp" are in same directory
and it works
|