This repository was archived by the owner on Mar 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx
More file actions
66 lines (58 loc) · 4.37 KB
/
Copy pathDefault.aspx
File metadata and controls
66 lines (58 loc) · 4.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<asp:Content runat="server" ID="FeaturedContent" ContentPlaceHolderID="FeaturedContent">
<h1>
Avkat Informatics
</h1>
<p>
<iframe id="I1" frameborder="0" height="600" marginheight="0" marginwidth="0" name="I1" scrolling="no" src="https://scgis.maps.arcgis.com/home/webmap/templates/OnePane/basicviewer/embed.html?webmap=c26f0a354ce34461bcecfc8bece03b89&gcsextent=35.2319,40.5549,35.2499,40.566&displayslider=true&displayscalebar=true&displaylegend=true&displaydetails=true&displaysearch=true&displaybasemaps=true" width="940"></iframe>
<br />
<small><a href="https://scgis.maps.arcgis.com/home/webmap/viewer.html?webmap=c26f0a354ce34461bcecfc8bece03b89&extent=35.2319,40.5549,35.2499,40.566" style="color:#0000FF;text-align:left" target="_blank">View Larger Map</a></small>
<asp:Panel id="Panel1" runat="server"
BackColor="White"
Height="200px"
Width="944px">
<asp:Label ID="Label1" runat="server" Text="Content Type"></asp:Label>
<asp:Label ID="Label2" runat="server" Text="Feature Types"></asp:Label>
<asp:Label ID="Label3" runat="server" Text="Dates By Era"></asp:Label>
<asp:Label ID="Label4" runat="server" Text="Date Begin"></asp:Label>
<asp:Label ID="Label5" runat="server" Text="Date End"></asp:Label>
Ceramics(Y:1,N:0)<br />
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
<asp:DropDownList ID="DropDownList2" runat="server" OnSelectedIndexChanged="DropDownList2_SelectedIndexChanged">
</asp:DropDownList>
<asp:DropDownList ID="DropDownList3" runat="server">
<asp:ListItem Selected="True">Any</asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="TextBox1" runat="server" Width="66px"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" Width="71px"></asp:TextBox>
<asp:DropDownList ID="DropDownList4" runat="server">
<asp:ListItem>0</asp:ListItem>
<asp:ListItem>1</asp:ListItem>
</asp:DropDownList>
<br />
<asp:Button ID="Button1" runat="server" Text="Execute Query" OnClick="Button1_Click" />
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="Download Data" />
<asp:Table ID="Table1" runat="server" BorderColor="#FF9933" BackColor="White" BorderStyle="Solid" Font-Names="Times New Roman" Font-Size="Small" Font-Strikeout="False">
</asp:Table>
<br />
<br />
</asp:Panel>
<br />
<script type="text/javascript">
function Navigate() {
var s = "<%=photoQueryString%>"
javascript: window.open(s);
}
</script>
</asp:Content>
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
</asp:Content>