How can I find Which version of ASP I am working with ?

Check your IIS application configuration.
You can see there which aspnet_isapi.dll will be used for *.aspx extention (for example c:\winnt\microsoft.net\framework\v1.1.4322\aspnet_isapi.dll)
 
hrabia said:
Check your IIS application configuration.
You can see there which aspnet_isapi.dll will be used for *.aspx extention (for example c:\winnt\microsoft.net\framework\v1.1.4322\aspnet_isapi.dll)

Thanks for ur reply
....

But that's the Framework version only ..know.. What bout the ASP.net version asp 1.0/asp 2.0 ? :(
 
I'm not sure I understand you :)
AFAIK the version of framework fixes the version of ASP.NET so framework 1.1 means ASP.NET 1.1 and so on. Only some products (for example WSE) are distributed independently from framework distributions.
 
Yes I got Answer

System.Environment.Version.ToString();

This will give the version number


Thank u all for their effort.
Regards
ABHILASH M.K
 
Back
Top