vote up 3 vote down star
3

So I have a website project, which I precompile when I publish.

I have a question, when I need to make a small change to the deployed site, do I have to rebuild, re-publish and deploy the entire website structure again, or can I just copy the modified aspx page and the bin directory?

Please let me know!

Thanks guys!

flag

50% accept rate

3 Answers

vote up 3 vote down check

It is going to depend on how you did the precompiling of the site.

According to MSDN, if you did a precompile for deployment, the process takes aspx files and processes any internal code in them, so you will need to recompile everything.

If you did a precompile for deployment and update, the aspx files are not taken into consideration, so provided all you did was some UI changes, you can push the updated aspx file up without issue.

link|flag
vote up 1 vote down

You should be able to republish locally and then copy up the modified published pages and the bin folder.

You shouldn't need to upload everything.

link|flag
I'll give it a try on my devserver – JackM Jul 21 at 23:02

Your Answer

Get an OpenID
or

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