温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:替某公司写的一个小论坛(供新人参考)
当前文件:
lingdaBBS/TitleInfo.aspx[2K,2009-6-12 11:47:01],打开代码结构图
lingdaBBS/TitleInfo.aspx[2K,2009-6-12 11:47:01],打开代码结构图1<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="TitleInfo.aspx.cs" Inherits="TitleInfo" Title="Untitled Page" %> 2
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 3
<table border="1" cellspacing="0" style="width: 100%;" bordercolor="#f00000" > 4
<tr> 5
<td colspan="2">主帖</td> 6
</tr> 7
<tr> 8
<td style="width:20%; height: 300px;" valign="top"> 9
用户信息<br /> 10
用户信息<br /> 11
用户信息<br /> 12
用户信息 13
</td> 14
<td style="width: 80%; height: 300px;" valign="top"> 15
<asp:DataList ID="dlTopic" runat="server"> 16
<ItemTemplate> 17
<%# Eval("Content") %> 18
</ItemTemplate> 19
</asp:DataList></td> 20
</tr> 21
</table> 22
23
<!--回帖表--> 24
<table style="width: 100%" border="0" cellspacing="0" cellpadding="0"> 25
<tr> 26
<td> 27
<asp:DataList ID="dlReply" runat="server" Width="100%"> 28
<ItemTemplate> 29
<table border="1" cellspacing="0" style="width: 100%;" bordercolor="#f00000" > 30
<tr> 31
<td colspan="2">回帖</td> 32
</tr> 33
<tr> 34
<td style="width:20%; height: 100px;" valign="top"> 35
用户信息<br /> 36
用户信息<br /> 37
用户信息<br /> 38
用户信息 39
</td> 40
<td style="width: 80%; height: 100px;" valign="top"> 41
<%# Eval("ReplyContent") %> 42
</td> 43
</tr> 44
</table> 45
</ItemTemplate> 46
</asp:DataList></td> 47
</tr> 48
</table> 49
<table border="1" cellpadding="0" cellspacing="0" style="width: 100%;" bordercolor="#f00000"> 50
<tr> 51
<td style="height:30px; background-color: #ff0000" colspan="2"> 52
快速回复</td> 53
</tr> 54
<tr> 55
<td style="width: 20%; height:100px"> 56
</td> 57
<td style="width: 80%;" align="center"> 58
<asp:TextBox ID="txtReply" runat="server" Rows="10" TextMode="MultiLine" Width="90%"></asp:TextBox><br /> 59
<asp:Button ID="btnReply" runat="server" Text="回复" Width="90px" OnClick="btnReply_Click" /></td> 60
</tr> 61
</table> 62
63
64
</asp:Content> 65
66





