01.
<asp:Content ID=
"Content1"
ContentPlaceHolderID=
"head"
runat=
"server"
>
02.
<link href=
"../Styles/InputSty.css"
rel=
"stylesheet"
type=
"text/css"
/>
03.
<link href=
"../Styles/BoxSaveStyle.css"
rel=
"stylesheet"
type=
"text/css"
/>
04.
<link href=
"../StylesDate/jquery-ui.css"
rel=
"stylesheet"
type=
"text/css"
/>
05.
<link href=
"../StylesDate/jquery-ui.min.css"
rel=
"stylesheet"
type=
"text/css"
/>
06.
<link href=
"../StylesDate/theme.css"
rel=
"stylesheet"
type=
"text/css"
/>
07.
</asp:Content>
08.
09.
<asp:ScriptManager ID=
"ScriptManager1"
runat=
"server"
>
10.
<scripts>
11.
<asp:ScriptReference Path=
"../jquery/jquery-3.1.1.js"
/>
12.
<asp:ScriptReference Path=
"../jquery/jquery-3.1.1.min.js"
/>
13.
<asp:ScriptReference Path=
"../jquery/jquery-3.1.1.min.map"
/>
14.
<asp:ScriptReference Path=
"../jqueryDate/jquery-ui.js"
/>
15.
<asp:ScriptReference Path=
"../jqueryDate/jquery-ui.min.js"
/>
16.
</scripts>
17.
</asp:ScriptManager>
18.
<script type=
"text/javascript"
>
19.
$(document).ready(function () {
20.
$(function () {
21.
$(
"#datepicker"
).datepicker();
22.
});
23.
24.
$(
"#Button1"
).click(function () {
25.
alert(
"Hello World1"
);
26.
});
27.
28.
$(
"#ContentPlaceHolder1_Button2"
).click(function () {
29.
alert(
"Hello World2"
);
30.
});
31.
});
32.
</script>