-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path$_Dropdown_Transfer.aspx
29 lines (24 loc) · 1.26 KB
/
$_Dropdown_Transfer.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="$_Dropdown_Transfer.aspx.cs" Inherits="WebApplication_A.WebForm3" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:ListBox ID="lstSource" Width="100" Height="120" SelectionMode="Multiple" runat="server">
<asp:ListItem Text="India"></asp:ListItem>
<asp:ListItem Text="Australia"></asp:ListItem>
<asp:ListItem Text="USA"></asp:ListItem>
<asp:ListItem Text="UK"></asp:ListItem>
<asp:ListItem Text="South Africa"></asp:ListItem>
<asp:ListItem Text="West Indies"></asp:ListItem>
</asp:ListBox>
<asp:Button ID="btnFirst" runat="server" Text="|<<" OnClick="btnFirst_Click" />
<asp:Button ID="btnPrevious" runat="server" Text="<<" OnClick="btnPrevious_Click" />
<asp:Button ID="btnNext" runat="server" Text=">>" OnClick="btnNext_Click" />
<asp:Button ID="btnLast" runat="server" Text=">>|" OnClick="btnLast_Click" />
<asp:ListBox ID="lstDestination" Width="100" Height="120" SelectionMode="Multiple" runat="server"></asp:ListBox>
</form>
</body>
</html>