You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
453 B
11 lines
453 B
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 |