Answer by Yuriy Rozhovetskiy for Get .NET assembly version for aspx file
You may implement custom HttpModule, put it to the bin folder of each application that you wish to monitor and append register this module in web.config files. In this module for example you should...
View ArticleAnswer by Cos Callis for Get .NET assembly version for aspx file
The ASP.NET engine streams nothing but HTML, javascript, etc.. to the client. There is nothing left of the assembly that gets passed in the response that can show what version of .net/asp.net that the...
View ArticleAnswer by Paul Calcraft for Get .NET assembly version for aspx file
Without modifying the web application to expose the version number through some URL-based retrieval (a simple page GET being the easy, obvious one), you're going to need to find a way to figure out...
View ArticleGet .NET assembly version for aspx file
I want to make a "properties style web form" that shows the application version for various .NET applications.If I know the URL e.g. /someapp/default.aspx is it possible via reflection to execute that...
View Article