Initial Commit Update Telerik

This commit is contained in:
2022-01-07 19:26:33 +01:00
commit 57e1cda236
2174 changed files with 1202494 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
Imports System.Web.Configuration
Public Class Registerbestaetigung
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Select Case Request.QueryString("fnkt")
Case "Bestaetigung"
Me.RadAjaxPanel1.Controls.Add(Page.LoadControl("~/UserControls/RegisterSend.ascx"))
Case "Aktivierung"
Me.RadAjaxPanel1.Controls.Add(Page.LoadControl("~/UserControls/RegisterActivation.ascx"))
End Select
End Sub
End Class