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.
LPWeb/LPWeb20/User/KontoInformationen.aspx

112 lines
5.1 KiB

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="KontoInformationen.aspx.vb" Inherits="LPWeb.KontoInformationen" %>
<%@ Register Src="~/Defaults/Header.ascx" TagPrefix="shu" TagName="Header" %>
<%@ Register Src="~/UserControls/Menu1.ascx" TagPrefix="shu" TagName="Menu" %>
<%@ Register Src="~/Defaults/Footer.ascx" TagPrefix="shu" TagName="Footer" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.style1
{
width: 126px;
}
</style>
</head>
<script runat="server">
Public Sub CheckID(source As Object, args As ServerValidateEventArgs)
Check_Userid(source, args)
End Sub
Public Sub CheckCaptcha(source As Object, args As ServerValidateEventArgs)
Check_Captcha(source, args)
End Sub
</script><body>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="ScriptManager1" runat="server"
EnableTheming="True">
<scripts>
<asp:ScriptReference Assembly="Telerik.Web.UI"
Name="Telerik.Web.UI.Common.Core.js">
</asp:ScriptReference>
<asp:ScriptReference Assembly="Telerik.Web.UI"
Name="Telerik.Web.UI.Common.jQuery.js">
</asp:ScriptReference>
<asp:ScriptReference Assembly="Telerik.Web.UI"
Name="Telerik.Web.UI.Common.jQueryInclude.js">
</asp:ScriptReference>
</scripts>
</telerik:RadScriptManager>
<div class="page">
<shu:Header runat="Server" ID="Header1"></shu:Header>
<shu:Menu runat="server" ID="Menu1" NavigationLanguage="VB"></shu:Menu>
<div class="main">
<h2>Konto-Informationen</h2>
&nbsp;<asp:ValidationSummary ID="ValidationSummary1" runat="server" ForeColor="Red"
HeaderText="Folgende Fehler sind vorhanden:" />
<p>
<table style="width:100%;">
<tr>
<td class="style1">
Benutzername</td>
<td>
<asp:TextBox ID="txtBenutzername" runat="server" Width="250px"></asp:TextBox>
<asp:CustomValidator ID="CV1" runat="server" controltovalidate="txtBenutzername"
errormessage="Benutzername bereits vergeben" OnServerValidate="CheckID"
ForeColor="White" />
</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td class="style1">
Passwort</td>
<td>
<asp:TextBox ID="txtPasswort" runat="server" TextMode="Password" Width="250px"></asp:TextBox>
<asp:RegularExpressionValidator ID="Regex3" runat="server" ControlToValidate="txtPasswort"
ErrorMessage="Passwort muss ein Sonderzeichen @#$%^&amp;.*/ beinhalten"
ValidationExpression=".*[@#$%^&*/].*" ForeColor="White" />
</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td class="style1">
Wiederholung</td>
<td>
<asp:TextBox ID="txtPasswort1" runat="server" TextMode="Password" Width="250px"></asp:TextBox>
<asp:CompareValidator ID="CompareValidator1" runat="server" ControlToValidate="txtpasswort" ControlToCompare="txtPasswort1" ErrorMessage="Passworte nicht identisch" ForeColor="Red"></asp:CompareValidator>
</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td class="style1">
E-Mail</td>
<td>
<asp:TextBox ID="txtEMail" runat="server" Width="250px"></asp:TextBox>
<asp:RegularExpressionValidator ID="Eegex1" runat="server" ErrorMessage="E-Mail-Adresse ungültig" ForeColor="White" ControlToValidate="txtEmail" ValidationExpression="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*">*</asp:RegularExpressionValidator>
</td>
<td>
&nbsp;</td>
</tr>
</table>
<telerik:RadCaptcha
ID="RadCaptcha1" Runat="server" ErrorMessage="Sicherheitscode fehlt oder ist ungültig"
CaptchaTextBoxLabel="Bitte den Sicherheitscode aus dem Bild eingeben" >
</telerik:RadCaptcha>
<telerik:RadButton ID="btnSave" runat="server"
Text="Änderungen speichern">
</telerik:RadButton>
</p>
</div>
</div>
</form>
<shu:Footer runat="Server" ID="Footer1"></SHU:Footer>
</body>
</html>