Guest User

Untitled

a guest
Aug 24th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. IIS ASP.Net Website - ManagedPipelineHandler Error ( An operation was attempted on a nonexistent network connection)
  2. <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
  3. <telerik:RadFormDecorator ID="RadFormDecorator" runat="server" DecoratedControls="All" />
  4. <p>
  5. Please enter your username and password.
  6. </p>
  7. <asp:Login ID="LoginUser" runat="server" EnableViewState="false" RenderOuterTable="false">
  8. <LayoutTemplate>
  9. <asp:Panel runat="server" ID="LoginPanel" DefaultButton="LoginButton">
  10. <p>
  11. <span class="failure-notification">
  12. <asp:Literal ID="FailureText" runat="server"></asp:Literal>
  13. </span>
  14. </p>
  15. <asp:ValidationSummary ID="LoginUserValidationSummary" runat="server" CssClass="failure-notification"
  16. ValidationGroup="LoginUserValidationGroup" />
  17. <div class="account-info">
  18. <fieldset class="login">
  19. <legend>Account Information</legend>
  20. <p>
  21. <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName">Username:</asp:Label>
  22. <asp:TextBox ID="UserName" runat="server" CssClass="text-entry"></asp:TextBox>
  23. <asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName"
  24. CssClass="failure-notification" ErrorMessage="User Name is required." ToolTip="User Name is required."
  25. ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator>
  26. </p>
  27. <p>
  28. <asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Password:</asp:Label>
  29. <asp:TextBox ID="Password" runat="server" CssClass="password-entry" TextMode="Password"></asp:TextBox>
  30. <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password"
  31. CssClass="failure-notification" ErrorMessage="Password is required." ToolTip="Password is required."
  32. ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator>
  33. </p>
  34. <%--<p>
  35. <asp:CheckBox ID="RememberMe" runat="server"/>
  36. <asp:Label ID="RememberMeLabel" runat="server" AssociatedControlID="RememberMe" CssClass="inline">Keep me logged in</asp:Label>
  37. </p>--%>
  38. </fieldset>
  39. <p class="margin-top-10">
  40. <asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Log In" ValidationGroup="LoginUserValidationGroup" />
  41. </p>
  42. </div>
  43. </asp:Panel>
  44. </LayoutTemplate>
  45. </asp:Login>
Add Comment
Please, Sign In to add comment