up vote 6 down vote favorite
share [g+] share [fb]

I have a ASP.net 2.0 app and I have made some changes the the source file ( cs files ). I uploaded the changes with the belief that it would auto-recompile. I also have the compiled dll in MY_APP/bin. I checked it and noticed that it did not recompile. Please understand I am new to this.

link|improve this question

This is on the development webserver for this project I don't want to compile it locally. – Brian G Sep 9 '08 at 13:32
feedback

6 Answers

up vote 6 down vote accepted

my #1 way to do this, add white space to the top of the web config file, after the xml declaration tag.

It forces the node to re-cache and recompile. We even have a page deep in the admin called Flush.aspx that does it for us.

link|improve this answer
feedback

I use a similar method to ChanChan, but instead of whitespace I put a comment in the web.config to indicate when/why the config was edited.

link|improve this answer
feedback

It's always best to just actually run a build after making .cs changes.

Where are you running it? Is this for debugging or production?

link|improve this answer
feedback

Where did you upload the changes? Source control, web server?

Did you run a build first? Local or remotely?

link|improve this answer
feedback

In VS menu you have Build -> Rebuild Solution

link|improve this answer
feedback

Editing the web.config file for my .net 1.1 application, the code is not being re-compiled. I also do not have a solution file. I am editing on the production server, making just minor changes. Is there any way to make the application recompile?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.