Skip to content

Commit 8344db1

Browse files
committed
initial commit
1 parent 02ffa6f commit 8344db1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+15869
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jQueryAutocomplete", "jQueryAutocomplete\jQueryAutocomplete.csproj", "{DC351373-4168-41F5-BEB9-433B989C9EED}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{DC351373-4168-41F5-BEB9-433B989C9EED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{DC351373-4168-41F5-BEB9-433B989C9EED}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{DC351373-4168-41F5-BEB9-433B989C9EED}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{DC351373-4168-41F5-BEB9-433B989C9EED}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal
18.5 KB
Binary file not shown.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<%@ Page Title="About Us" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
2+
CodeBehind="About.aspx.cs" Inherits="jQueryAutocomplete.About" %>
3+
4+
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
5+
</asp:Content>
6+
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
7+
<h2>
8+
About
9+
</h2>
10+
<p>
11+
Put content here.
12+
</p>
13+
</asp:Content>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.UI;
6+
using System.Web.UI.WebControls;
7+
8+
namespace jQueryAutocomplete
9+
{
10+
public partial class About : System.Web.UI.Page
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
15+
}
16+
}
17+
}

jQueryAutocomplete/jQueryAutocomplete/About.aspx.designer.cs

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<%@ Page Title="Change Password" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
2+
CodeBehind="ChangePassword.aspx.cs" Inherits="jQueryAutocomplete.Account.ChangePassword" %>
3+
4+
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
5+
</asp:Content>
6+
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
7+
<h2>
8+
Change Password
9+
</h2>
10+
<p>
11+
Use the form below to change your password.
12+
</p>
13+
<p>
14+
New passwords are required to be a minimum of <%= Membership.MinRequiredPasswordLength %> characters in length.
15+
</p>
16+
<asp:ChangePassword ID="ChangeUserPassword" runat="server" CancelDestinationPageUrl="~/" EnableViewState="false" RenderOuterTable="false"
17+
SuccessPageUrl="ChangePasswordSuccess.aspx">
18+
<ChangePasswordTemplate>
19+
<span class="failureNotification">
20+
<asp:Literal ID="FailureText" runat="server"></asp:Literal>
21+
</span>
22+
<asp:ValidationSummary ID="ChangeUserPasswordValidationSummary" runat="server" CssClass="failureNotification"
23+
ValidationGroup="ChangeUserPasswordValidationGroup"/>
24+
<div class="accountInfo">
25+
<fieldset class="changePassword">
26+
<legend>Account Information</legend>
27+
<p>
28+
<asp:Label ID="CurrentPasswordLabel" runat="server" AssociatedControlID="CurrentPassword">Old Password:</asp:Label>
29+
<asp:TextBox ID="CurrentPassword" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
30+
<asp:RequiredFieldValidator ID="CurrentPasswordRequired" runat="server" ControlToValidate="CurrentPassword"
31+
CssClass="failureNotification" ErrorMessage="Password is required." ToolTip="Old Password is required."
32+
ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:RequiredFieldValidator>
33+
</p>
34+
<p>
35+
<asp:Label ID="NewPasswordLabel" runat="server" AssociatedControlID="NewPassword">New Password:</asp:Label>
36+
<asp:TextBox ID="NewPassword" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
37+
<asp:RequiredFieldValidator ID="NewPasswordRequired" runat="server" ControlToValidate="NewPassword"
38+
CssClass="failureNotification" ErrorMessage="New Password is required." ToolTip="New Password is required."
39+
ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:RequiredFieldValidator>
40+
</p>
41+
<p>
42+
<asp:Label ID="ConfirmNewPasswordLabel" runat="server" AssociatedControlID="ConfirmNewPassword">Confirm New Password:</asp:Label>
43+
<asp:TextBox ID="ConfirmNewPassword" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
44+
<asp:RequiredFieldValidator ID="ConfirmNewPasswordRequired" runat="server" ControlToValidate="ConfirmNewPassword"
45+
CssClass="failureNotification" Display="Dynamic" ErrorMessage="Confirm New Password is required."
46+
ToolTip="Confirm New Password is required." ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:RequiredFieldValidator>
47+
<asp:CompareValidator ID="NewPasswordCompare" runat="server" ControlToCompare="NewPassword" ControlToValidate="ConfirmNewPassword"
48+
CssClass="failureNotification" Display="Dynamic" ErrorMessage="The Confirm New Password must match the New Password entry."
49+
ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:CompareValidator>
50+
</p>
51+
</fieldset>
52+
<p class="submitButton">
53+
<asp:Button ID="CancelPushButton" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancel"/>
54+
<asp:Button ID="ChangePasswordPushButton" runat="server" CommandName="ChangePassword" Text="Change Password"
55+
ValidationGroup="ChangeUserPasswordValidationGroup"/>
56+
</p>
57+
</div>
58+
</ChangePasswordTemplate>
59+
</asp:ChangePassword>
60+
</asp:Content>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.UI;
6+
using System.Web.UI.WebControls;
7+
8+
namespace jQueryAutocomplete.Account
9+
{
10+
public partial class ChangePassword : System.Web.UI.Page
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
15+
}
16+
}
17+
}

jQueryAutocomplete/jQueryAutocomplete/Account/ChangePassword.aspx.designer.cs

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<%@ Page Title="Change Password" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
2+
CodeBehind="ChangePasswordSuccess.aspx.cs" Inherits="jQueryAutocomplete.Account.ChangePasswordSuccess" %>
3+
4+
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
5+
</asp:Content>
6+
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
7+
<h2>
8+
Change Password
9+
</h2>
10+
<p>
11+
Your password has been changed successfully.
12+
</p>
13+
</asp:Content>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.UI;
6+
using System.Web.UI.WebControls;
7+
8+
namespace jQueryAutocomplete.Account
9+
{
10+
public partial class ChangePasswordSuccess : System.Web.UI.Page
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
15+
}
16+
}
17+
}

jQueryAutocomplete/jQueryAutocomplete/Account/ChangePasswordSuccess.aspx.designer.cs

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<%@ Page Title="Log In" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
2+
CodeBehind="Login.aspx.cs" Inherits="jQueryAutocomplete.Account.Login" %>
3+
4+
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
5+
</asp:Content>
6+
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
7+
<h2>
8+
Log In
9+
</h2>
10+
<p>
11+
Please enter your username and password.
12+
<asp:HyperLink ID="RegisterHyperLink" runat="server" EnableViewState="false">Register</asp:HyperLink> if you don't have an account.
13+
</p>
14+
<asp:Login ID="LoginUser" runat="server" EnableViewState="false" RenderOuterTable="false">
15+
<LayoutTemplate>
16+
<span class="failureNotification">
17+
<asp:Literal ID="FailureText" runat="server"></asp:Literal>
18+
</span>
19+
<asp:ValidationSummary ID="LoginUserValidationSummary" runat="server" CssClass="failureNotification"
20+
ValidationGroup="LoginUserValidationGroup"/>
21+
<div class="accountInfo">
22+
<fieldset class="login">
23+
<legend>Account Information</legend>
24+
<p>
25+
<asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName">Username:</asp:Label>
26+
<asp:TextBox ID="UserName" runat="server" CssClass="textEntry"></asp:TextBox>
27+
<asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName"
28+
CssClass="failureNotification" ErrorMessage="User Name is required." ToolTip="User Name is required."
29+
ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator>
30+
</p>
31+
<p>
32+
<asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Password:</asp:Label>
33+
<asp:TextBox ID="Password" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
34+
<asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password"
35+
CssClass="failureNotification" ErrorMessage="Password is required." ToolTip="Password is required."
36+
ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator>
37+
</p>
38+
<p>
39+
<asp:CheckBox ID="RememberMe" runat="server"/>
40+
<asp:Label ID="RememberMeLabel" runat="server" AssociatedControlID="RememberMe" CssClass="inline">Keep me logged in</asp:Label>
41+
</p>
42+
</fieldset>
43+
<p class="submitButton">
44+
<asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Log In" ValidationGroup="LoginUserValidationGroup"/>
45+
</p>
46+
</div>
47+
</LayoutTemplate>
48+
</asp:Login>
49+
</asp:Content>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.UI;
6+
using System.Web.UI.WebControls;
7+
8+
namespace jQueryAutocomplete.Account
9+
{
10+
public partial class Login : System.Web.UI.Page
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
RegisterHyperLink.NavigateUrl = "Register.aspx?ReturnUrl=" + HttpUtility.UrlEncode(Request.QueryString["ReturnUrl"]);
15+
}
16+
}
17+
}

jQueryAutocomplete/jQueryAutocomplete/Account/Login.aspx.designer.cs

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)