-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
39 lines (32 loc) · 1.18 KB
/
Default.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body >
<form id="form" runat="server">
<div class="div" >
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<br />
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" Width="100px">
<asp:ListItem>Toyota</asp:ListItem>
<asp:ListItem>Mazda</asp:ListItem>
<asp:ListItem>Ford</asp:ListItem>
<asp:ListItem>Subaru</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="DropDownList2" runat="server" Width="100px">
</asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>
<br />
</div>
<div class="div" >
</div>
</form>
</body>
</html>