How can I tell if an App is ASP.NET 2.0 or ASP.NET 1.1. This is in C#
I don't have the source code and I don't have access to IIS Manager. But I can ftp and check the ASPX files. Any Ideas?
if you can get an error message to show it will tell you at the bottom of the page what version of the framework is in use.
or, if you could upload a file, you could upload an aspx page containing code to output the framework version:
<%@ Page Language="C#" EnableSessionState="False" EnableViewState="False" Trace="False" Debug="False" %>
<script language="C#" runat="server">
protected void Page_Load(object s, EventArgs e)
{
Response.Write(System.Environment.Version);
}
</script>
this was just typed in, there could be syntax or other code errors.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With