Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Login Visual Web Developer '08 Express

Empfohlene Antworten

Veröffentlicht

Hallo.

Ich hab vor ein paar Monaten meine Ausbildung erst begonnen und benötige deshalb Hilfe.

Es geht um folgendes: Unser Klassenlehrer der Berufsschule hat mich beauftragt mit Hilfe von Visual Web Developer 2008 Express Edition (in aspx) ein Forum für die Klasse zu erstellen.

Bisher auch keine größeren Probleme, jedoch:

Wenn sich jemand registriert bzw. anmeldet, so MUSS das Kennwort IMMER aus Buchstaben, Zahlen und ein Sonderzeichen bestehen.

Diese Regel würde ich gern ändern (so, dass jedern User selbst entscheiden kann, wie sicher sein Passwort ist - wenn keine Sonderzeichen drin sein sollen, ok). Ich sitz seit ein paar Tagen schon an diesen Problem.

Ich bitte um Hilfe, bevor ich mich noch :old

Ich wünschte wirklich, ich könnte diese Frage beantworten :(

Da ich keine Ahnung hab, was FormsAuthentication ist und was eigenes nicht auf die Reihe bekomme würde ich auf Antwort Windows tippen :rolleyes:

Aber vielleicht wird meine Vorgehensweise mehr beantworten (alles mit Visual Web Developer '08 Express Edition):

- Einsteiger-Tutorial von msdn

- Master-Seite vohanden

- extra Seite neuerbenutzer.aspx gemacht

-> auf dieser Seite aus der Tool-Box unter Anmelden die Box CreateUserWizard gezogen und fertig.

- unter Asp.Net-Konfiguration hab ich keine Rollen ect. angelget

Baukastensystem.

<asp:CreateUserWizard ID="CreateUserWizard1" runat="server" BackColor="#C7C7C8" BorderStyle="None" CreateUserButtonText="und los!">

         <WizardSteps>

             <asp:CreateUserWizardStep runat="server">

                 <ContentTemplate>

                     <table border="0">

                         <tr>

                             <td align="center" colspan="2">

                                 Neues Benutzerkonto hinzufügen:</td>

                         </tr>

                         <tr>

                             <td align="right">

                                 <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName">Benutzername:</asp:Label></td>

                             <td>

                                 <asp:TextBox ID="UserName" runat="server"></asp:TextBox>

                                 <asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName"

                                     ErrorMessage="Der Benutzername ist erforderlich." ToolTip="Der Benutzername ist erforderlich."

                                     ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="right">

                                 <asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Kennwort:</asp:Label></td>

                             <td>

                                 <asp:TextBox ID="Password" runat="server" TextMode="Password"></asp:TextBox>

                                 <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password"

                                     ErrorMessage="Das Kennwort ist erforderlich." ToolTip="Das Kennwort ist erforderlich."

                                     ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="right">

                                 <asp:Label ID="ConfirmPasswordLabel" runat="server" AssociatedControlID="ConfirmPassword">Kennwort bestätigen:</asp:Label></td>

                             <td>

                                 <asp:TextBox ID="ConfirmPassword" runat="server" TextMode="Password"></asp:TextBox>

                                 <asp:RequiredFieldValidator ID="ConfirmPasswordRequired" runat="server" ControlToValidate="ConfirmPassword"

                                     ErrorMessage="Das Bestätigungskennwort ist erforderlich." ToolTip="Das Bestätigungskennwort ist erforderlich."

                                     ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="right">

                                 <asp:Label ID="EmailLabel" runat="server" AssociatedControlID="Email">E-Mail:</asp:Label></td>

                             <td>

                                 <asp:TextBox ID="Email" runat="server"></asp:TextBox>

                                 <asp:RequiredFieldValidator ID="EmailRequired" runat="server" ControlToValidate="Email"

                                     ErrorMessage="E-Mail ist erforderlich." ToolTip="E-Mail ist erforderlich." ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="right">

                                 <asp:Label ID="QuestionLabel" runat="server" AssociatedControlID="Question">Sicherheitsfrage:</asp:Label></td>

                             <td>

                                 <asp:TextBox ID="Question" runat="server"></asp:TextBox>

                                 <asp:RequiredFieldValidator ID="QuestionRequired" runat="server" ControlToValidate="Question"

                                     ErrorMessage="Die Sicherheitsfrage ist erforderlich." ToolTip="Die Sicherheitsfrage ist erforderlich."

                                     ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="right">

                                 <asp:Label ID="AnswerLabel" runat="server" AssociatedControlID="Answer">Sicherheitsantwort:</asp:Label></td>

                             <td>

                                 <asp:TextBox ID="Answer" runat="server"></asp:TextBox>

                                 <asp:RequiredFieldValidator ID="AnswerRequired" runat="server" ControlToValidate="Answer"

                                     ErrorMessage="Die Sicherheitsantwort ist erforderlich." ToolTip="Die Sicherheitsantwort ist erforderlich."

                                     ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="center" colspan="2">

                                 <asp:CompareValidator ID="PasswordCompare" runat="server" ControlToCompare="Password"

                                     ControlToValidate="ConfirmPassword" Display="Dynamic" ErrorMessage="Das Kennwort und das Bestätigungskennwort müssen übereinstimmen."

                                     ValidationGroup="CreateUserWizard1"></asp:CompareValidator>

                             </td>

                         </tr>

                         <tr>

                             <td align="center" colspan="2" style="color: red">

                                 <asp:Literal ID="ErrorMessage" runat="server" EnableViewState="False"></asp:Literal>

                             </td>

                         </tr>

                     </table>

                 </ContentTemplate>

             </asp:CreateUserWizardStep>

             <asp:CompleteWizardStep runat="server">

                 <ContentTemplate>

                     <table border="0">

                         <tr>

                             <td align="center" colspan="2">

                                 Abschließen</td>

                         </tr>

                         <tr>

                             <td>

                                 Dein Konto wurde erfolgreich erstellt. Du kannst mir sofort los legen!</td>

                         </tr>

                         <tr>

                             <td align="right" colspan="2">

                                 <asp:Button ID="ContinueButton" runat="server" CausesValidation="False" CommandName="Continue"

                                     Text="Weiter" ValidationGroup="CreateUserWizard1" />

                             </td>

                         </tr>

                     </table>

                 </ContentTemplate>

             </asp:CompleteWizardStep>

         </WizardSteps>

     </asp:CreateUserWizard>

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.