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

📄 votemanage.aspx

📁 This is not a very mean things
💻 ASPX
字号:
<%@ Page language="c#" Codebehind="VoteManage.aspx.cs" AutoEventWireup="false" Inherits="vote.VoteManage" %>
<HTML>
	<HEAD>
		<title>管理投票系统</title>
		<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
		<meta name="CODE_LANGUAGE" Content="C#">
		<meta name="vs_defaultClientScript" content="JavaScript">
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
		<LINK href="../Global.css" type="text/css" rel="stylesheet">
	</HEAD>
	<body MS_POSITIONING="GridLayout">
		<form id="VoteManage" method="post" runat="server">
			<center>
				<a href="Manage.aspx">录入新问题</a> | 管理所有问题 | <a href="other.aspx">查看所有问题</a>
				<br>
				<br>
				投票系统管理页面<br>
				<br>
				<br>
				<asp:DataGrid id="DataGrid1" runat="server" BorderColor="#CCCCCC" BorderStyle="None" BackColor="White"
					CellPadding="3" BorderWidth="1px" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanged="DataGrid1_PageIndexChanged"
					PageSize="15" AllowSorting="True">
					<SelectedItemStyle Font-Bold="True" ForeColor="White" BackColor="#669999"></SelectedItemStyle>
					<ItemStyle ForeColor="#000066"></ItemStyle>
					<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#006699"></HeaderStyle>
					<FooterStyle ForeColor="#000066" BackColor="#FFFFFF"></FooterStyle>
					<Columns>
						<asp:BoundColumn DataField="Question_id" HeaderText="编号"></asp:BoundColumn>
						<asp:BoundColumn DataField="question_subject" HeaderText="主题"></asp:BoundColumn>
						<asp:BoundColumn DataField="Start_Time" HeaderText="开始时间"></asp:BoundColumn>
						<asp:BoundColumn DataField="s" HeaderText="投票数"></asp:BoundColumn>
						<asp:HyperLinkColumn Text="修改" DataNavigateUrlField="Question_id" DataNavigateUrlFormatString="Modify.aspx?ID={0}"
							HeaderText="修改"></asp:HyperLinkColumn>
						<asp:HyperLinkColumn Text="删除" DataNavigateUrlField="Question_id" DataNavigateUrlFormatString="Delete.aspx?ID={0}"
							HeaderText="删除"></asp:HyperLinkColumn>
					</Columns>
					<PagerStyle HorizontalAlign="Left" ForeColor="#000066" BackColor="White" Mode="NumericPages"></PagerStyle>
				</asp:DataGrid>
			</center>
		</form>
	</body>
</HTML>

⌨️ 快捷键说明

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