温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:三层小型论坛系统源码
当前文件路径:myBBS/TopicUpdate.aspx

1<%@ Page Language="c#" Inherits="MyBBS.Web.TopicUpdate" CodeFile="TopicUpdate.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: 490px; position: absolute; 12
top: 8px; height: 296px" cellspacing="1" cellpadding="1" width="490" border="1"> 13
<tbody> 14
<tr> 15
<td> 16
>>帖子列表>>修改帖子</td> 17
</tr> 18
<tr> 19
<td> 20
<asp:TextBox ID="TextBoxTitle" runat="server"></asp:TextBox> by 【 21
<asp:Label ID="LabelUserLoginName" runat="server"></asp:Label>】</td> 22
</tr> 23
<tr> 24
<td style="height: 209px"> 25
<asp:TextBox ID="TextBoxContent" runat="server" Width="480px" TextMode="MultiLine" 26
Height="204px"></asp:TextBox></td> 27
</tr> 28
<tr> 29
<td> 30
<p> 31
【 32
<asp:Label ID="LabelCreateTime" runat="server"></asp:Label>】from【 33
<asp:Label ID="LabelIP" runat="server"></asp:Label>】</p> 34
</td> 35
</tr> 36
<tr> 37
<td align="center"> 38
<asp:Button ID="ButtonUpdate" runat="server" Width="50px" Text="修改" OnClick="ButtonUpdate_Click"> 39
</asp:Button> 40
<asp:Button ID="ButtonBack" runat="server" Width="48px" Text="返回" OnClick="ButtonBack_Click"> 41
</asp:Button></td> 42
</tr> 43
</tbody> 44
</table> 45
</form> 46
</body> 47
</html> 48



