-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx
More file actions
26 lines (24 loc) · 1.04 KB
/
Default.aspx
File metadata and controls
26 lines (24 loc) · 1.04 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
<%@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div style="text-align:center;">
<asp:Label ID="Label1" runat="server" Text="Select export type:"></asp:Label>
<p/>
<asp:DropDownList ID="ddlExportType" runat="server" Width="60px">
<asp:ListItem>xls</asp:ListItem>
<asp:ListItem>pdf</asp:ListItem>
<asp:ListItem>rtf</asp:ListItem>
<asp:ListItem>csv</asp:ListItem>
</asp:DropDownList>
<p/>
<asp:CheckBox ID="CheckBox1" runat="server" Text="Inline" />
<p/>
<asp:Button ID="Button1" runat="server" Text="Export" Width="60px" OnClick="Button1_Click" /></div> <%--PostBackUrl="~/ReportOutput.aspx"--%>
</form>
</body>
</html>