madcolor
madcolor

Reputation: 8170

Getting .NET Framework version in VB.NET

Anyone know the <%= %> or Response.Write() code for getting the version of .Net my web app is running on?

Upvotes: 3

Views: 10855

Answers (2)

ter
ter

Reputation:

System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion

Upvotes: 0

jlew
jlew

Reputation: 10591

System.Environment.Version will give you that.

Upvotes: 12

Related Questions