-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShowForum.aspx
More file actions
35 lines (28 loc) · 1.34 KB
/
ShowForum.aspx
File metadata and controls
35 lines (28 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%@ Page Language="C#" MasterPageFile="~/Roblox.master" AutoEventWireup="true" CodeBehind="ShowForum.aspx.cs" Inherits="Roblox.Website.Forum.ShowForum" %>
<%@ Import Namespace="AspNetForums.Components" %>
<%@ Register TagPrefix="AspNetForums" Namespace="AspNetForums.Controls" Assembly="AspNetForums" %>
<%@ Register Src="~/UserControls/Ads/AsyncAd.ascx" TagName="AsyncAd" TagPrefix="rbx" %>
<asp:Content ContentPlaceHolderID="cphRoblox" runat="server">
<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0">
<tr valign="top">
<!-- left column -->
<td class="LeftColumn"> </td>
<!-- center column -->
<td id="CenterColumn" runat="server" class="CenterColumn">
<br>
<AspNetForums:ThreadView runat="server" id="ThreadView1" />
</td>
<td class="CenterColumn"> </td>
<!-- right column -->
<td Width="160px" style="padding-top:88px;">
<rbx:AsyncAd ID="ForumsSkyscraper" runat="server" Visible="false" />
</td>
<td class="RightColumn"> </td>
</tr>
</table>
</asp:Content>
<asp:Content ContentPlaceHolderID="cphBannerAd" runat="server">
<div id="AdvertisingLeaderboard" >
<rbx:AsyncAd ID="ForumsBanner" runat="server" />
</div>
</asp:Content>