Skip to content

Commit 2d05b5c

Browse files
author
Konduru Keerthi Konduru Ravichandra Raju
committed
Read and Save document
1 parent b2d078c commit 2d05b5c

File tree

77 files changed

+58607
-11594
lines changed

Some content is hidden

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

77 files changed

+58607
-11594
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.4.33213.308
4+
VisualStudioVersion = 17.10.34928.147
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Send-Word-to-client-browser", "Send-Word-to-client-browser\Send-Word-to-client-browser.csproj", "{76522C71-37A7-424F-83B4-E8C6A227B2A1}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Send-Word-to-client-browser", "Send-Word-to-client-browser\Send-Word-to-client-browser.csproj", "{6E647A06-97D3-4428-92FD-4F20308901CD}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{76522C71-37A7-424F-83B4-E8C6A227B2A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{76522C71-37A7-424F-83B4-E8C6A227B2A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{76522C71-37A7-424F-83B4-E8C6A227B2A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{76522C71-37A7-424F-83B4-E8C6A227B2A1}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{6E647A06-97D3-4428-92FD-4F20308901CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{6E647A06-97D3-4428-92FD-4F20308901CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{6E647A06-97D3-4428-92FD-4F20308901CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{6E647A06-97D3-4428-92FD-4F20308901CD}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
2222
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {2973C9A1-13AA-4275-96BC-D8DDF389777D}
23+
SolutionGuid = {B8FFD971-C100-4F1A-8F55-4364BB7B5DF5}
2424
EndGlobalSection
2525
EndGlobal
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="Send_Word_to_client_browser.About" %>
22

33
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
4-
<h2><%: Title %>.</h2>
5-
<h3>Your application description page.</h3>
6-
<p>Use this area to provide additional information.</p>
4+
<main aria-labelledby="title">
5+
<h2 id="title"><%: Title %>.</h2>
6+
<h3>Your application description page.</h3>
7+
<p>Use this area to provide additional information.</p>
8+
</main>
79
</asp:Content>

Read-and-Save-document/Send-Word-to-client-browser/ASP.NET/Send-Word-to-client-browser/App_Start/BundleConfig.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public class BundleConfig
1212
// For more information on Bundling, visit https://go.microsoft.com/fwlink/?LinkID=303951
1313
public static void RegisterBundles(BundleCollection bundles)
1414
{
15+
RegisterJQueryScriptManager();
16+
1517
bundles.Add(new ScriptBundle("~/bundles/WebFormsJs").Include(
1618
"~/Scripts/WebForms/WebForms.js",
1719
"~/Scripts/WebForms/WebUIValidation.js",
@@ -34,5 +36,17 @@ public static void RegisterBundles(BundleCollection bundles)
3436
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
3537
"~/Scripts/modernizr-*"));
3638
}
39+
40+
public static void RegisterJQueryScriptManager()
41+
{
42+
ScriptManager.ScriptResourceMapping.AddDefinition("jquery",
43+
new ScriptResourceDefinition
44+
{
45+
Path = "~/scripts/jquery-3.7.0.min.js",
46+
DebugPath = "~/scripts/jquery-3.7.0.js",
47+
CdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.7.0.min.js",
48+
CdnDebugPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.7.0.js"
49+
});
50+
}
3751
}
3852
}
Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="Send_Word_to_client_browser.Contact" %>
22

33
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
4-
<h2><%: Title %>.</h2>
5-
<h3>Your contact page.</h3>
6-
<address>
7-
One Microsoft Way<br />
8-
Redmond, WA 98052-6399<br />
9-
<abbr title="Phone">P:</abbr>
10-
425.555.0100
11-
</address>
4+
<main aria-labelledby="title">
5+
<h2 id="title"><%: Title %>.</h2>
6+
<h3>Your contact page.</h3>
7+
<address>
8+
One Microsoft Way<br />
9+
Redmond, WA 98052-6399<br />
10+
<abbr title="Phone">P:</abbr>
11+
425.555.0100
12+
</address>
1213

13-
<address>
14-
<strong>Support:</strong> <a href="mailto:[email protected]">[email protected]</a><br />
15-
<strong>Marketing:</strong> <a href="mailto:[email protected]">[email protected]</a>
16-
</address>
14+
<address>
15+
<strong>Support:</strong> <a href="mailto:[email protected]">[email protected]</a><br />
16+
<strong>Marketing:</strong> <a href="mailto:[email protected]">[email protected]</a>
17+
</address>
18+
</main>
1719
</asp:Content>
Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
/* Move down content because we have a fixed navbar that is 50px tall */
2-
body {
3-
padding-top: 50px;
4-
padding-bottom: 20px;
5-
}
6-
7-
/* Wrapping element */
1+
/* Wrapping element */
82
/* Set some basic padding to keep content from hitting the edges */
93
.body-content {
4+
margin-top: 15px;
105
padding-left: 15px;
116
padding-right: 15px;
127
}
@@ -18,20 +13,9 @@ textarea {
1813
max-width: 280px;
1914
}
2015

21-
2216
/* Responsive: Portrait tablets and up */
2317
@media screen and (min-width: 768px) {
24-
.jumbotron {
25-
margin-top: 20px;
26-
}
27-
2818
.body-content {
2919
padding: 0;
3020
}
3121
}
32-
33-
.navbar-inverse .navbar-toggle:hover,
34-
.navbar-inverse .navbar-toggle:focus {
35-
background-color: #777;
36-
border-color: #fff
37-
}

0 commit comments

Comments
 (0)