11 lines
453 B
VB.net
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 |