I have a web service asp.net project which has a global.asax with empty Application_Start and Application_End implementations.
I have a web service asp.net project which has a global.asax with empty Application_Start
and Application_End
implementations.
As far as I can understand, in this case it is of no use and could be removed (correct me if I'm wrong).
Do I need to do anything other than delete global.asax and global.asax.cs (such as change something in web.config or in the project settings)?
Just asking in order to not screw up some dependencies I'm no
开发者_JS百科t aware of...
Sure, you shouldn't have any problems just deleting the file. But, if you are concerned you will 'break' something, try renaming it first.
精彩评论