Change code in production without deployment - ASP.NET -
i using asp.net
in .cs page setting value variable [count = 12]. count var, have declared on aspx page.
now have change vlaue of count = 13. should written in !ispostback event in page_load(). issue it's small change , can't re deploy website small change.
is way can modify code in production site whitout re deploying it?
for change in server side code, don't need re-deploy full application. replace existing project output library (dll) new one. should in "bin" folder of application.
also, if needs change value of variable, consider storing in appsettings section in web.config file.
Comments
Post a Comment