User Control Page /DesktopModuleTitle.ascx (C#)
Uses Code Behind Page Page /DesktopModuleTitle.ascx.cs (C#)
1: <%@ Control CodeBehind="DesktopModuleTitle.ascx.cs" Language="c#" AutoEventWireup="false" Inherits="ASPNetPortal.DesktopModuleTitle" %>
2:
3: <%--
4:
5: The PortalModuleTitle User Control is responsible for displaying the title of each
6: portal module within the portal -- as well as optionally the module's "Edit Page"
7: (if such a page has been configured).
8:
9: --%>
10:
11:
12: <table width="98%" cellspacing="0" cellpadding="0">
13: <tr>
14: <td align="left">
15: <asp:label id="ModuleTitle" cssclass="Head" EnableViewState="false" runat="server" />
16: </td>
17: <td align="right">
18: <asp:hyperlink id="EditButton" cssclass="CommandButton" EnableViewState="false" runat="server" />
19: </td>
20: </tr>
21: <tr>
22: <td colspan="2">
23: <hr noshade size="1">
24: </td>
25: </tr>
26: </table>