Skip to content

Commit 4c8b825

Browse files
author
Ben Herila
committed
Fixed line endings and encodings in aspx files
1 parent 7b445a6 commit 4c8b825

File tree

156 files changed

+5479
-5479
lines changed

Some content is hidden

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

156 files changed

+5479
-5479
lines changed

examples/CSharp/About.aspx

+33-33
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="CSharp.About" %>
2-
3-
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
4-
<hgroup class="title">
5-
<h1><%: Title %>.</h1>
6-
<h2>Your app description page.</h2>
7-
</hgroup>
8-
9-
<article>
10-
<p>
11-
Use this area to provide additional information.
12-
</p>
13-
14-
<p>
15-
Use this area to provide additional information.
16-
</p>
17-
18-
<p>
19-
Use this area to provide additional information.
20-
</p>
21-
</article>
22-
23-
<aside>
24-
<h3>Aside Title</h3>
25-
<p>
26-
Use this area to provide additional information.
27-
</p>
28-
<ul>
29-
<li><a runat="server" href="~/">Home</a></li>
30-
<li><a runat="server" href="~/About.aspx">About</a></li>
31-
<li><a runat="server" href="~/Contact.aspx">Contact</a></li>
32-
</ul>
33-
</aside>
1+
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="CSharp.About" %>
2+
3+
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
4+
<hgroup class="title">
5+
<h1><%: Title %>.</h1>
6+
<h2>Your app description page.</h2>
7+
</hgroup>
8+
9+
<article>
10+
<p>
11+
Use this area to provide additional information.
12+
</p>
13+
14+
<p>
15+
Use this area to provide additional information.
16+
</p>
17+
18+
<p>
19+
Use this area to provide additional information.
20+
</p>
21+
</article>
22+
23+
<aside>
24+
<h3>Aside Title</h3>
25+
<p>
26+
Use this area to provide additional information.
27+
</p>
28+
<ul>
29+
<li><a runat="server" href="~/">Home</a></li>
30+
<li><a runat="server" href="~/About.aspx">About</a></li>
31+
<li><a runat="server" href="~/Contact.aspx">Contact</a></li>
32+
</ul>
33+
</aside>
3434
</asp:Content>

examples/CSharp/Account/Login.aspx

+47-47
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
<%@ Page Title="Log in" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="CSharp.Account.Login" %>
2-
<%@ Register Src="~/Account/OpenAuthProviders.ascx" TagPrefix="uc" TagName="OpenAuthProviders" %>
3-
4-
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
5-
<hgroup class="title">
6-
<h1><%: Title %>.</h1>
7-
</hgroup>
8-
<section id="loginForm">
9-
<h2>Use a local account to log in.</h2>
10-
<asp:Login runat="server" ViewStateMode="Disabled" RenderOuterTable="false">
11-
<LayoutTemplate>
12-
<p class="validation-summary-errors">
13-
<asp:Literal runat="server" ID="FailureText" />
14-
</p>
15-
<fieldset>
16-
<legend>Log in Form</legend>
17-
<ol>
18-
<li>
19-
<asp:Label runat="server" AssociatedControlID="UserName">User name</asp:Label>
20-
<asp:TextBox runat="server" ID="UserName" />
21-
<asp:RequiredFieldValidator runat="server" ControlToValidate="UserName" CssClass="field-validation-error" ErrorMessage="The user name field is required." />
22-
</li>
23-
<li>
24-
<asp:Label runat="server" AssociatedControlID="Password">Password</asp:Label>
25-
<asp:TextBox runat="server" ID="Password" TextMode="Password" />
26-
<asp:RequiredFieldValidator runat="server" ControlToValidate="Password" CssClass="field-validation-error" ErrorMessage="The password field is required." />
27-
</li>
28-
<li>
29-
<asp:CheckBox runat="server" ID="RememberMe" />
30-
<asp:Label runat="server" AssociatedControlID="RememberMe" CssClass="checkbox">Remember me?</asp:Label>
31-
</li>
32-
</ol>
33-
<asp:Button runat="server" CommandName="Login" Text="Log in" />
34-
</fieldset>
35-
</LayoutTemplate>
36-
</asp:Login>
37-
<p>
38-
<asp:HyperLink runat="server" ID="RegisterHyperLink" ViewStateMode="Disabled">Register</asp:HyperLink>
39-
if you don't have an account.
40-
</p>
41-
</section>
42-
43-
<section id="socialLoginForm">
44-
<h2>Use another service to log in.</h2>
45-
<uc:OpenAuthProviders runat="server" ID="OpenAuthLogin" />
46-
</section>
47-
</asp:Content>
1+
<%@ Page Title="Log in" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="CSharp.Account.Login" %>
2+
<%@ Register Src="~/Account/OpenAuthProviders.ascx" TagPrefix="uc" TagName="OpenAuthProviders" %>
3+
4+
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
5+
<hgroup class="title">
6+
<h1><%: Title %>.</h1>
7+
</hgroup>
8+
<section id="loginForm">
9+
<h2>Use a local account to log in.</h2>
10+
<asp:Login runat="server" ViewStateMode="Disabled" RenderOuterTable="false">
11+
<LayoutTemplate>
12+
<p class="validation-summary-errors">
13+
<asp:Literal runat="server" ID="FailureText" />
14+
</p>
15+
<fieldset>
16+
<legend>Log in Form</legend>
17+
<ol>
18+
<li>
19+
<asp:Label runat="server" AssociatedControlID="UserName">User name</asp:Label>
20+
<asp:TextBox runat="server" ID="UserName" />
21+
<asp:RequiredFieldValidator runat="server" ControlToValidate="UserName" CssClass="field-validation-error" ErrorMessage="The user name field is required." />
22+
</li>
23+
<li>
24+
<asp:Label runat="server" AssociatedControlID="Password">Password</asp:Label>
25+
<asp:TextBox runat="server" ID="Password" TextMode="Password" />
26+
<asp:RequiredFieldValidator runat="server" ControlToValidate="Password" CssClass="field-validation-error" ErrorMessage="The password field is required." />
27+
</li>
28+
<li>
29+
<asp:CheckBox runat="server" ID="RememberMe" />
30+
<asp:Label runat="server" AssociatedControlID="RememberMe" CssClass="checkbox">Remember me?</asp:Label>
31+
</li>
32+
</ol>
33+
<asp:Button runat="server" CommandName="Login" Text="Log in" />
34+
</fieldset>
35+
</LayoutTemplate>
36+
</asp:Login>
37+
<p>
38+
<asp:HyperLink runat="server" ID="RegisterHyperLink" ViewStateMode="Disabled">Register</asp:HyperLink>
39+
if you don't have an account.
40+
</p>
41+
</section>
42+
43+
<section id="socialLoginForm">
44+
<h2>Use another service to log in.</h2>
45+
<uc:OpenAuthProviders runat="server" ID="OpenAuthLogin" />
46+
</section>
47+
</asp:Content>

0 commit comments

Comments
 (0)