Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
bubberz
Constraint Violating Yak Guru
289 Posts |
Posted - 2006-02-21 : 16:51:02
|
We have a .NET application which contains a folder with .asp files.If I change an .asp file, do I have to rebuild the solution each time I change an .asp file?Can't I simply copy the .asp file from the dev server up to the live server?Thanks! |
|
bubberz
Constraint Violating Yak Guru
289 Posts |
Posted - 2006-02-21 : 17:16:52
|
Looks like changes to the .asp or HTML / (.aspx) requires NO rebuild, but changes to the .aspx.vb do!Thanks! |
 |
|
jsmith8858
Dr. Cross Join
7423 Posts |
Posted - 2006-02-21 : 19:04:15
|
That is correct -- remember, ASP files are scripts, and are not compiled. Even ASPX files, to some extent, can be changed w/o needing to rebuld. But changing any "code behind" file (such as those ending in .vb) or any databinding code on a webform will definitely require a rebuild. |
 |
|
|
|
|