Can I edit Asp.net Mvc cshtml after posting?

Is it possible to edit .cshtml files after publication, or are there any backlinks?

+5
source share
1 answer

Yes, you can edit the .cshtml file after publishing it.

Yes, there are flaws.

  • If you are editing on a production server, you bypass QA
  • You will not go through the correct build cycle
  • You must integrate this change in version control.

I highly recommend sticking to the cycle

  • The code
  • Unit test
  • registration
  • Publish / Deploy in QA
  • QA test
  • Return to Code as needed
  • Publish / Deploy in PROD
  • If something breaks, return to "Code"

, , .

"QA" , "QA", .

+6

All Articles