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.
19 lines
599 B
19 lines
599 B
Public Class Begruessungstext
|
|
Inherits System.Web.UI.Page
|
|
|
|
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
|
|
If Not Page.IsPostBack Then
|
|
Dim dh As New clsDatahandling
|
|
dh.Get_Option(7)
|
|
Me.Editor1.Text = dh.Get_Option(7)
|
|
|
|
End If
|
|
End Sub
|
|
|
|
|
|
|
|
Private Sub Editor1_SaveButtonClick(sender As Object, e As EventArgs) Handles Editor1.SaveButtonClick
|
|
Dim dh As New clsDatahandling
|
|
dh.UpdateTable("Optionen", "Inhalt", Me.Editor1.Text, True, "OptionNr", 7)
|
|
End Sub
|
|
End Class |