001.
<%@ Page Language=
"vb"
AutoEventWireup=
"false"
CodeBehind=
"frm_popup1.aspx.vb"
Inherits
=
"data001.frm_popup1"
%>
002.
004.
006.
<head runat=
"server"
>
007.
<title></title>
008.
<script type=
"text/javascript"
>
009.
$(function () {
010.
$(
".DateSelector"
).datepicker({
011.
dateFormat:
012.
changeMonth: true,
013.
changeYear: true,
014.
yearRange:
015.
});
016.
});
017.
</script>
018.
<script type=
"text/javascript"
>
019.
function OpenPopup(url) {
020.
popup = window.open(url,
"mypopup"
,
"location=1,status=1,scrollbars=1,width=420,height=300"
);
021.
popup.moveTo(0, 0);
022.
}
023.
function OpenPopup1(url) {
024.
popup = window.open(url,
"mypopup"
,
"location=1,status=1,scrollbars=1,width=1024,height=600"
);
025.
popup.moveTo(0, 0);
026.
}
027.
</script>
028.
029.
030.
<script type=
"text/javascript"
>
031.
var popUpObj;
032.
function showModalPopUp() {
033.
popUpObj = window.open(
"frm_popup2.aspx"
,
034.
"ModalPopUp"
,
035.
"toolbar=no,"
+
036.
"scrollbars=yes,"
+
037.
"location=no,"
+
038.
"statusbar=no,"
+
039.
"menubar=no,"
+
040.
"resizable=no,"
+
041.
"width=600,"
+
042.
"height=450,"
+
043.
"left = 30,"
+
044.
"top=90"
045.
);
046.
popUpObj.focus();
047.
048.
}
049.
050.
function CheckLine() {
051.
popUpObj = window.open(
"Frm_Check.aspx"
,
052.
"ModalPopUp"
,
053.
"toolbar=no,"
+
054.
"scrollbars=yes,"
+
055.
"location=no,"
+
056.
"statusbar=yes,"
+
057.
"menubar=no,"
+
058.
"resizable=yes,"
+
059.
"width=500,"
+
060.
"height=800,"
+
061.
"left = 900,"
+
062.
"top=90"
063.
);
064.
popUpObj.focus();
065.
066.
}
067.
068.
function Button4_onclick() {
069.
070.
}
071.
072.
</script>
073.
</head>
074.
<body>
075.
<form id=
"form1"
runat=
"server"
>
076.
<div>
077.
078.
<br />
079.
<br />
080.
<span style=
"text-align: right"
>
081.
<input
082.
id=
"Button4"
onclick=
"showModalPopUp()"
type=
"button"
083.
value=
"เพิ่มรายการ"
onclick=
"return Button4_onclick()"
084.
style=
"background-color: #00FF00"
/></span><br />
085.
<br />
086.
<asp:GridView ID=
"GridView1"
runat=
"server"
AutoGenerateColumns=
"False"
087.
CellPadding=
"4"
DataKeyNames=
"num1"
DataSourceID=
"SqlDataSource1"
088.
ForeColor=
"#333333"
GridLines=
"None"
Height=
"43px"
style=
"font-size: small"
089.
Width=
"16px"
>
090.
<AlternatingRowStyle BackColor=
"White"
/>
091.
<Columns>
092.
<asp:BoundField DataField=
"num1"
HeaderText=
"num1"
ReadOnly
=
"True"
093.
SortExpression=
"num1"
/>
094.
<asp:BoundField DataField=
"num2"
HeaderText=
"num2"
SortExpression=
"num2"
/>
095.
<asp:BoundField DataField=
"num3"
HeaderText=
"num3"
SortExpression=
"num3"
/>
096.
</Columns>
097.
<EditRowStyle BackColor=
"#7C6F57"
/>
098.
<FooterStyle BackColor=
"#1C5E55"
Font-Bold=
"True"
ForeColor=
"White"
/>
099.
<HeaderStyle BackColor=
"#1C5E55"
Font-Bold=
"True"
ForeColor=
"White"
/>
100.
<PagerStyle BackColor=
"#666666"
ForeColor=
"White"
HorizontalAlign=
"Center"
/>
101.
<RowStyle BackColor=
"#E3EAEB"
/>
102.
<SelectedRowStyle BackColor=
"#C5BBAF"
Font-Bold=
"True"
ForeColor=
"#333333"
/>
103.
<SortedAscendingCellStyle BackColor=
"#F8FAFA"
/>
104.
<SortedAscendingHeaderStyle BackColor=
"#246B61"
/>
105.
<SortedDescendingCellStyle BackColor=
"#D4DFE1"
/>
106.
<SortedDescendingHeaderStyle BackColor=
"#15524A"
/>
107.
</asp:GridView>
108.
<asp:SqlDataSource ID=
"SqlDataSource1"
runat=
"server"
109.
ConnectionString=
"<%$ ConnectionStrings:ESD_001ConnectionString %>"
110.
SelectCommand=
"SELECT * FROM [popup]"
></asp:SqlDataSource>
111.
<br />
112.
113.
</div>
114.
</form>
115.
</body>
116.
</html>