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.

16 lines
563 B

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