59 lines
2.6 KiB
Plaintext
59 lines
2.6 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="VoteAdd.aspx.cs" Inherits="GongGao_VoteAdd" %>
|
|
|
|
<html>
|
|
<head>
|
|
<title><%=System.Configuration.ConfigurationManager.AppSettings["SYSTitle"]%> </title>
|
|
<meta content="yes" name="apple-mobile-web-app-capable" />
|
|
<meta content="index,follow" name="robots" />
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
|
<link href="../Style/Mobile/pics/homescreen.gif" rel="apple-touch-icon" />
|
|
<meta content="minimum-scale=1.0, width=device-width, maximum-scale=0.6667, user-scalable=no"
|
|
name="viewport" />
|
|
<link href="../Style/Mobile/css/Style.css" rel="stylesheet" media="screen" type="text/css" />
|
|
<link href="../Style/Mobile/css/developer-style.css" rel="stylesheet" type="text/css" />
|
|
|
|
<script src="../Style/Mobile/javascript/functions.js" type="text/javascript"></script>
|
|
|
|
<link href="../Style/Mobile/pics/startup.png" rel="apple-touch-startup-image" />
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div id="topbar">
|
|
<div id="leftnav">
|
|
<a href="../Main.aspx">
|
|
<img alt="home" src="../Style/Mobile/images/home.png" /></a><a href="Vote.aspx">投票</a>
|
|
</div>
|
|
<div id="title">
|
|
添加投票</div>
|
|
</div>
|
|
<div id="tributton">
|
|
<div class="links">
|
|
<a href="../Main.aspx">主页</a><a href="#">在线用户</a><a id="pressed">关于</a></div>
|
|
</div>
|
|
<div id="content">
|
|
<fieldset>
|
|
<span class="graytitle">投票主题:</span>
|
|
<ul class="pageitem">
|
|
<li class="bigfield">
|
|
<asp:TextBox ID="TextBox1" runat="server" Width="100%"></asp:TextBox>
|
|
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="TextBox1"
|
|
ErrorMessage="*该项不可以为空"></asp:RequiredFieldValidator>
|
|
</li>
|
|
</ul>
|
|
<span class="graytitle">投票选项:</span>
|
|
<ul class="pageitem">
|
|
<li class="textbox">
|
|
<asp:TextBox ID="TextBox2" runat="server" Height="80px" TextMode="MultiLine" Width="100%"></asp:TextBox><br />
|
|
每个选项中间请采用 | 分隔开,请注意大小写。如:好|非常好|真的好 </li>
|
|
<li class="button">
|
|
<asp:Button ID="ImageButton1" runat="server" Text="保存" OnClick="ImageButton1_Click" />
|
|
</li>
|
|
</ul>
|
|
</fieldset>
|
|
</div>
|
|
<div id="footer">
|
|
<a href="#">Powered by </a></div>
|
|
</form>
|
|
</body>
|
|
</html>
|