I have a webservice, mapperservice.asmx, which calls the code behind page defined in App_Code\Service.cs
This service is now live, so I would like to have a dev version next to it. So I copied both files, so now I have mapperservice_dev.asmx, and App_Code\Service_dev.cs
But even without building the project, if I try to access mapperservice.asmx, I get an error that the code in Service_dev.cs does not compile.
Why does this happen? I figured they compiled independently since there is no DLL present, and I did not build the project. Why is the project being built without me telling it to? And why cant I seperate my two services?
This service is now live, so I would like to have a dev version next to it. So I copied both files, so now I have mapperservice_dev.asmx, and App_Code\Service_dev.cs
But even without building the project, if I try to access mapperservice.asmx, I get an error that the code in Service_dev.cs does not compile.
Why does this happen? I figured they compiled independently since there is no DLL present, and I did not build the project. Why is the project being built without me telling it to? And why cant I seperate my two services?