Build events are handy ways to perform tasks that need to be done every time a project is rebuilt. The Visual Studio IDE exposes these events through the project properties dialog for windows applications, but not for web applications. However, the IDE can be coerced into supporting build events for web applications, and it's surprisingly easy to do. Simply open your web project's .csproj file and look under the settings element for the following elements:
<VISUALSTUDIOPROJECT>
<CSHARP>
<BUILD>
<SETTINGS>
<!-- Your Build Events Here -->
PreBuildEvent = ""
PostBuildEvent ...