温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:三层小型论坛系统源码
当前文件:
myBBS/TopicAdd.aspx[1K,2009-6-12 11:48:08],打开代码结构图
myBBS/TopicAdd.aspx[1K,2009-6-12 11:48:08],打开代码结构图1<%@ Page Language="c#" Inherits="MyBBS.Web.TopicAdd" CodeFile="TopicAdd.aspx.cs" %> 2
3
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 4
<html xmlns="http://www.w3.org/1999/xhtml"> 5
<head> 6
<title>添加帖子</title> 7
<link href="Styles/Style.css" type="text/css" rel="stylesheet"/> 8
</head> 9
<body> 10
<form id="Form1" method="post" runat="server"> 11
<table id="Table1" style="z-index: 101; left: 8px; width: 456px; position: absolute; 12
top: 8px; height: 352px" cellspacing="1" cellpadding="0" 13
width="456" border="1"> 14
<tr> 15
<td colspan="2"> 16
帖子列表>>发表新帖>></td> 17
</tr> 18
<tr> 19
<td style="width: 17px; height: 12px"> 20
标题*</td> 21
<td style="width: 232px; height: 12px"> 22
<asp:TextBox ID="TextBoxTitle" runat="server" Width="352px"></asp:TextBox></td> 23
</tr> 24
<tr> 25
<td style="width: 17px; height: 4px"> 26
内容*</td> 27
<td style="width: 232px; height: 4px"> 28
<asp:TextBox ID="TextBoxContent" runat="server" Width="432px" Height="261px" TextMode="MultiLine"></asp:TextBox></td> 29
</tr> 30
<tr> 31
<td align="center" colspan="3"> 32
<asp:Button ID="ButtonOK" runat="server" Width="56px" Text="确定" OnClick="ButtonOK_Click"> 33
</asp:Button> 34
35
<asp:Button ID="ButtonBack" runat="server" Width="56px" Text="返回" OnClick="ButtonBack_Click"> 36
</asp:Button></td> 37
</tr> 38
</table> 39
</form> 40
</body> 41
</html> 42




