writemessage.aspx

来自「visual studio 2005开发环境下采用C#语言开发的简单留言本源码」· ASPX 代码 · 共 49 行

ASPX
49
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="WriteMessage.aspx.cs" Inherits="WriteMessage" %>

<!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>发表留言</title>
    <link rel="stylesheet" href="css/css.css" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <center>
    <div style="width:800px;">
        <table cellspacing="0" cellpadding="0" border="0" width="600">
					<tr>
						<td bgcolor="#ffffff" style="height: 174px">
							<table border="0" cellspacing="1" cellpadding="4" style="width: 148%">
								<tr class="header">
									<td colspan="2" align="left"><img alt="" src="images/lock.gif" width="22" height="13" border="0" />请输入留言内容</td>
								</tr>
								<tr>
									<td bgcolor="#e3e3e3" style="width: 11%">
                                        标题:</td>
									<td bgcolor="#f7f7f7" align="left">
                                        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td>
								</tr>
								<tr>
									<td bgcolor="#e3e3e3" style="width: 11%; height: 91px;">
                                        内容:</td>
									<td bgcolor="#f7f7f7" align="left" style="height: 91px">
                                        <asp:TextBox ID="TextBox2" runat="server" Height="140px" TextMode="MultiLine" Width="349px"></asp:TextBox></td>
								</tr>
								<tr>
									<td bgcolor="#e3e3e3" style="height: 30px; width: 11%;"></td>
									<td bgcolor="#f7f7f7" align="left" style="height: 30px">
                                        <asp:Button ID="btnLogin" runat="server" CssClass="btn" Text="发表留言" OnClick="btnLogin_Click" />
                                        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="返回留言列表" /></td>
								</tr>
							</table>
                            <br />
                            <asp:Label ID="Label1" runat="server" ForeColor="Red"></asp:Label></td>
					</tr>
				</table>    
       </div>
    </center>
    </form>
</body>
</html>

⌨️ 快捷键说明

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