Files
2019-12-21 10:58:30 +01:00

11 lines
453 B
VB.net

Public Class About
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.Label1.Text = System.Configuration.ConfigurationManager.AppSettings("Version")
Me.Label2.Text = System.Configuration.ConfigurationManager.AppSettings("Versionsdatum")
Me.Label3.Text = System.Configuration.ConfigurationManager.AppSettings("Copyright")
End Sub
End Class