I was trying to add a cancel button and a label control under my custom Manage Profile page but they're not displaying. Could someone tell me what I have missing? Thank you very much. Here's my user control source code:
<%@ Control language="vb" CodeFile="ProfileCustom.ascx.vb" AutoEventWireup="false" Explicit="True" Inherits="SecurityCustom.ProfileCustom" %>
<%@ Register TagPrefix="dnn" TagName="Sectionhead" Src="~/controls/SectionHeadControl.ascx" %>
<%@ Register TagPrefix="dnn" Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls"%>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<table cellspacing="0" cellpadding="0" summary="Profile Design Table" border="0">
<tr id="trTitle" runat="server">
<td valign="bottom"><asp:label id="lblTitle" cssclass="Head" runat="server"></asp:label></td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td valign="top">
<dnn:ProfileEditorControl id="ProfileProperties" runat="Server"
editcontrolstyle-cssclass="NormalTextBox"
enableClientValidation = "true"
errorstyle-cssclass="NormalRed"
groupHeaderStyle-cssclass="Head"
groupHeaderIncludeRule="True"
helpstyle-cssclass="Help"
labelstyle-cssclass="SubHead"
visibilitystyle-cssclass="Normal"
editcontrolwidth="525px"
labelwidth="175px"
width="700px" />
</td>
</tr>
<tr>
<td height="10"></td>
</tr>
</table>
<p>
<asp:Label ID="lblCancel" runat="server" Text="Cancel"></asp:Label>
<dnn:commandbutton id="cmdCancel" runat="server" resourcekey="cmdCancel" imageurl="~/images/lt.gif" />
<dnn:commandbutton class="CommandButton" id="cmdUpdate" runat="server" resourcekey="cmdUpdate" imageurl="~/images/save.gif" />
</p>