Get application name in asp.net

use Reflection (there are other goodies in the class)
ie.
System.Reflection.Assembly.GetCallingAssembly.GetName.Name.ToString
 
Thanks. I just tried your code but it returns System.Web instead of my application name. Is that some other properties or methods in the class that return the application name?
 
Back
Top