Deploy Changes in already deployed server
I have an web application that has .aspx forms and their corresponding .cs 'code behind' files. This application is deployed in another system/server where no .net is installed. (Now the server has only the .aspx file which are in html format) This is developed using .net 2005.
Normally .net 2003 will create a dll in bin folder apart from these aspx files. So we can copy the .dll file (which has latest changes) to the deployment server. But in 2005, dll also is not created.
Now i have some changes in the form functionality which has been made in .cs file. How do i deploy this change along with the already deployed application in that server which does not have any .cs file.
|