Reputation: 7553
I am using a remote windows VM to edit/develop a survey system. Using Microsoft Visual Web Developer 2010 Express as my IDE. I want to compile this project but the option is disabled. I’m not even sure if it has to be compiled, though.
(A) Is it possible this is being compiled on runtime?
(B) Is there a way to check if this is working correctly?
This is the master folder:
And this is the App_Code folder:
When I have the any file open, the Debug > Start Debugging (F5)
option is disabled and there are no other “Compile” options. I've tried compiling everything as a folder and don't think that worked either.
Thank you in advance.
~ EDIT ~
The Solutions Explorer Window looks like this:
RESOLVED
The server automatically compiles the code on run.
Thank you @Ňuf
Upvotes: 3
Views: 1036
Reputation: 6217
I'm suspicious that you are missing project file. If this is the case, go to File->New Project->ASP.NET Web Application->OK and then in Solution Explorer right-click on project->Add->Existing Item and select all files that you created earlier, to add them to the project. After that, menu item Debug->Start debugging should be available.
Upvotes: 2