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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debugging Problem With Include Files On The Client

Status
Not open for further replies.

dtqbterror

Programmer
May 17, 2001
87
US
I have just started working with Visual Interdev and have an issue that I need to get an answer to. I was able finally to get the Debug Facility in Visual Interdeve working after much trial and error not to mention pain and suffering.

Now that I have this working when I attempt to run an ASP application in debug mode I get an error that it is unable to find my Include files

When I set up the application the Server side directory structure is set up as

//{server name}/inetpub/custormer service on the client it was created as

C:/inetpub/customer service/customer service_local

I have the VirtualRoot of my client side project setup to be
/customer service_root

When I run the page and view it in a web browser from the server it finds my include files fine but, if I run it in client side debug I get the following error message.

Active Server Pages error 'ASP 0126'

Include file not found

/Customer Service_Local/default.asp, line 10

The include file '/IncludeFiles/navbar-script.inc' was not found.

Does anyone know what I am doing incorrectly or how I can fix this
problem any help would be greatly appreciated.

Thanks.
 
well, the first thing I would do is take out the space in your file and folder names -- that is one of the biggest no-no's I can think of... it's just bad practice...

Use under_scores or camelCase

That may even clear it up -- post back if not --

:)
Paul Prewett

 
We are going to have to restructure our Dev Server the first of next week so I will try your suggestion then hopefully this will work I will let you know one way or the other.

Thanks for your help
 
Well link9 I tried your suggestion (which I really appreciated) the directory structure on the server now looks like this

//<server name>/inetpub/<companyname.com>/www/

on the client the directory structure is as follows
C:/inetpub/<companyname.com>/
Where the .sln & .vip files are contained under the and the project files are contained under the directory.

The virtualroot for the project has been set to but, I am still receiving the same error message as described above.

Any help you could give me with this would be greatly appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top