⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 formwizard.aspx

📁 wrox c#高级编程
💻 ASPX
字号:
<%@ Register TagPrefix="MailingLists" TagName="AdminFooter" src="AdminFooter.ascx" %>
<%@ Register TagPrefix="MailingLists" TagName="AdminHeader" src="AdminHeader.ascx" %>
<%@ Page language="c#" Codebehind="FormWizard.aspx.cs" AutoEventWireup="false" Inherits="Wrox.WebModules.MailingLists.Web.FormWizard" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>MailingLists: Form Wizard</title>
		<link rel="stylesheet" HREF="/ThePhile/Styles/ThePhile.css" TYPE="text/css" />
		<link href="/ThePhile/Styles/Navigator.css" rel="stylesheet" />
		<meta name="CODE_LANGUAGE" Content="C#">
	</HEAD>
	<body>
		<form method="post" runat="server" ID="FormWizard">
			<!-- Insert the menu user control -->
			<MailingLists:AdminHeader id="Menu" runat="server" />
			<asp:Table ID="TableWizard" runat="server" CssClass="Grid_General" Width="100%">
				<asp:TableRow>
					<asp:TableCell Width="180px" Text="Subscription to List:" />
					<asp:TableCell>
						<asp:DropDownList runat="server" ID="ListsDropDown" Width="300px" CssClass="TextBox" DataTextField="Name" DataValueField="ListID" />
					</asp:TableCell>
				</asp:TableRow>
				<asp:TableRow>
					<asp:TableCell Width="150px" Text="Ask for the first name:" />
					<asp:TableCell>
						<asp:CheckBox runat="server" ID="AskFirstName" />
					</asp:TableCell>
				</asp:TableRow>
				<asp:TableRow>
					<asp:TableCell Width="150px" Text="Ask for the last name:" />
					<asp:TableCell>
						<asp:CheckBox runat="server" ID="AskLastName" />
					</asp:TableCell>
				</asp:TableRow>
				<asp:TableRow>
					<asp:TableCell Width="150px" Text="Allow Unsubscription:" />
					<asp:TableCell>
						<asp:CheckBox runat="server" ID="AllowUnsubscription" />
					</asp:TableCell>
				</asp:TableRow>
				<asp:TableRow>
					<asp:TableCell />
					<asp:TableCell>
						<asp:Button runat="server" Text="Create" ID="Create" CssClass="Button" OnClick="Create_Click" />
					</asp:TableCell>
				</asp:TableRow>
			</asp:Table>
			<asp:Table ID="TableResult" runat="server" CssClass="Grid_General" Visible="false" Width="100%">
				<asp:TableRow VerticalAlign="Bottom" Height="50px">
					<asp:TableCell Text="<b>Result Form:</b>" />
				</asp:TableRow>
				<asp:TableRow>
					<asp:TableCell HorizontalAlign="center">
						<asp:Label runat="server" ID="ResultForm" Width="99%" />
					</asp:TableCell>
				</asp:TableRow>
				<asp:TableRow VerticalAlign="Bottom" Height="50px">
					<asp:TableCell Text="<b>HTML code to copy [modify] and paste:</b>" />
				</asp:TableRow>
				<asp:TableRow>
					<asp:TableCell HorizontalAlign="center">
						<asp:TextBox runat="server" ID="ResultFormHTML" Rows="10" TextMode="MultiLine" Width="99%" CssClass="TextBox" />
					</asp:TableCell>
				</asp:TableRow>
			</asp:Table>
			<!-- Insert the footer -->
			<MailingLists:AdminFooter id="Footer" runat="server" />
		</form>
	</body>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -