Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsEventsEventsError: Edit Event is currently unavailable.Error: Edit Event is currently unavailable.
Previous
 
Next
New Post
10/8/2007 8:29 PM
 

The problem is in the control markup. There is a table inside the pnlEnroll that has extra tags, thus causing the parse problem. The fixed markup is shown below. This is in the EditEvents.ascx

 

<

asp:Panel ID="pnlEnroll" runat="server">

 

<dnn:SectionHead ID="dshEnrollment" ResourceKey="EnrollmentSettings" IncludeRule="True"

 

Section="tblEnrollment" Text="Enrollment Settings" CssClass="Head" runat="server"

 

IsExpanded="False"></dnn:SectionHead>

 

<table id="tblEnrollment" cellspacing="0" cellpadding="0" width="100%" border="0"

 

runat="server">

 

<tbody>

 

<tr>

 

<td class="SubHead" width="292">

 

<p align="right">

 

<dnn:Label ID="lblAllowErollment" runat="server"></dnn:Label>

 

</p>

 

</td>

 

<td class="SubHead">

 

<asp:CheckBox ID="chkSignups" resourcekey="Yes" runat="server" CssClass="SubHead"

 

Visible="False" Text="Yes"></asp:CheckBox></td>

 

</tr>

 

<tr>

 

<td class="SubHead" align="right" width="292">

 

<dnn:Label ID="lblTypeOfEnrollment" runat="server"></dnn:Label>

 

</td>

 

<td class="SubHead">

 

<input id="rblFree" type="radio" checked value="FREE" name="rblEnrollType" runat="server">&nbsp;

 

<asp:Label ID="lblFree" resourcekey="lblFree" runat="server" CssClass="SubHead">Free</asp:Label><asp:Label

 

ID="lblModerated" resourcekey="lblModerated.Text" runat="server" CssClass="SubHead">(Moderated)</asp:Label></td>

 

</tr>

 

<tr>

 

<td class="SubHead" width="292">

 

</td>

 

<td class="SubHead">

 

<input id="rblPaid" type="radio" value="PAID" name="rblEnrollType" runat="server">&nbsp;&nbsp;

 

<asp:Label ID="lblPaidFee" resourcekey="lblPaidFee" runat="server" CssClass="SubHead">Paid Fee:</asp:Label><asp:TextBox

 

ID="txtEnrollFee" runat="server" Font-Size="8pt" CssClass="NormalTextBox" Width="56px"

 

MaxLength="8" Wrap="False"></asp:TextBox>&nbsp;&nbsp;

 

<asp:Label ID="lblPayPalAccount" resourcekey="lblPayPalAccount" runat="server" CssClass="SubHead">PayPal Account:</asp:Label><asp:TextBox

 

ID="txtPayPalAccount" runat="server" Font-Size="8pt" CssClass="NormalTextBox"

 

Width="147px" MaxLength="100" Wrap="False"></asp:TextBox></td>

 

</tr>

 

<tr>

 

<td class="SubHead" width="292">

 

</td>

 

<td class="SubHead">

 

<asp:RequiredFieldValidator ID="valBadFee" runat="server" CssClass="Normal" ErrorMessage="Fee required for Paid Enrollment"

 

ControlToValidate="txtEnrollFee" Visible="False" EnableViewState="false"></asp:RequiredFieldValidator><asp:RequiredFieldValidator

 

ID="valPayPalAccount" runat="server" CssClass="Normal" ErrorMessage="PayPal Account required for Paid Enrollment"

 

ControlToValidate="txtPayPalAccount" Visible="False" EnableViewState="false"></asp:RequiredFieldValidator></td>

 

</tr>

 

<tr>

 

<td class="SubHead" width="292">

 

<p align="right">

 

<dnn:Label ID="lblMaxEnrollment" runat="server"></dnn:Label>

 

</p>

 

</td>

 

<td class="SubHead">

 

<asp:TextBox ID="txtMaxEnrollment" runat="server" Font-Size="8pt" CssClass="NormalTextBox"

 

Width="32px" MaxLength="3">0</asp:TextBox>&nbsp;

 

<asp:Label ID="lblCurrentlyEnrolled" resourcekey="lblCurrentlyEnrolled" runat="server"

 

CssClass="SubHead">(unlimited enrollment = 0) Currently Enrolled:</asp:Label><asp:TextBox

 

ID="txtEnrolled" runat="server" Font-Size="8pt" CssClass="SubHead" Width="32px"

 

MaxLength="3" ReadOnly="True" BorderStyle="None">0</asp:TextBox></td>

 

</tr>

 

<tr>

 

<td class="SubHead" width="292">

 

<p align="right">

 

<dnn:Label ID="lblEnrollmentRole" runat="server"></dnn:Label>

 

</p>

 

</td>

 

<td class="SubHead">

 

<asp:DropDownList ID="ddEnrollRoles" runat="server" Font-Size="8pt" Width="214px">

 

</asp:DropDownList><asp:Label ID="lblEnrollRoleNote" resourcekey="lblEnrollRoleNote"

 

runat="server" CssClass="SubHead">(select "None" for All Registered)</asp:Label></td>

 

</tr>

 

<tr>

 

<td class="SubHead" colspan="2">

 

<p align="center">

 

<asp:Label ID="lblEnrolledUsers" resourcekey="lblEnrolledUsers" runat="server">Enrolled Users</asp:Label></p>

 

</td>

 

</tr>

 

<tr>

 

<td class="SubHead" colspan="2">

 

<div align="center">

 

<asp:DataGrid ID="grdEnrollment" runat="server" Font-Size="7pt" Visible="False" Width="786px"

 

BorderStyle="Outset" DataKeyField="SignupID" AutoGenerateColumns="False" GridLines="Horizontal"

 

Font-Names="Verdana" BorderWidth="2px">

 

<EditItemStyle VerticalAlign="Bottom"></EditItemStyle>

 

<AlternatingItemStyle BackColor="WhiteSmoke"></AlternatingItemStyle>

 

<ItemStyle VerticalAlign="Top"></ItemStyle>

 

<HeaderStyle Font-Bold="True" BackColor="Silver"></HeaderStyle>

 

<Columns>

 

<asp:TemplateColumn HeaderText="Select">

 

<ItemTemplate>

 

<asp:CheckBox ID="chkSelect" runat="server"></asp:CheckBox>

 

</ItemTemplate>

 

</asp:TemplateColumn>

 

<asp:BoundColumn DataField="UserName" HeaderText="Enrollee"></asp:BoundColumn>

 

<asp:BoundColumn DataField="Telephone" HeaderText="Phone"></asp:BoundColumn>

 

<asp:BoundColumn DataField="Approved" HeaderText="Approved"></asp:BoundColumn>

 

</Columns>

 

</asp:DataGrid></div>

 

<div align="center">

 

&nbsp;</div>

 

</td>

 

</tr>

 

<tr>

 

<td class="SubHead" align="center" colspan="2">

 

<table id="tblEnrollEmail" cellspacing="1" cellpadding="1" width="100%" border="0"

 

runat="server">

 

<tr>

 

<td class="SubHead" align="center">

 

<asp:Label ID="lblEmailEnrolledUsers" resourcekey="lblEmailEnrolledUsers" runat="server"

 

CssClass="SubHead">Email Enrolled Users</asp:Label></td>

 

</tr>

 

<tr>

 

<td class="SubHead" align="center">

 

<asp:LinkButton ID="lnkSelectedEmail" resourcekey="lnkSelectedEmail" runat="server"

 

CssClass="CommandButton" Text="Update" BorderStyle="none">Email Selected Enrolled Users</asp:LinkButton>&nbsp;&nbsp;

 

<asp:LinkButton ID="lnkSelectedDelete" resourcekey="lnkSelectedDelete" runat="server"

 

CssClass="CommandButton" Text="Update" BorderStyle="none">Delete Selected Enrolled Users</asp:LinkButton></td>

 

</tr>

 

</table>

 

</td>

 

</tr>

 

</tbody>

 

</table>

 

</asp:Panel>

 
New Post
10/14/2007 2:00 AM
 

Thanks!  That worked great for me.  Just be sure to format the markup once you add it to your project. Remove the whitespace after the first angle bracket.

 
New Post
11/9/2007 1:33 PM
 

Zan:

You have once again validated the thought that he says the least usually has something to say when they say something at all. Thanks for the fix, it worked for me!

 

-Kenneth

 
New Post
11/11/2007 6:53 AM
 

Hi Guys,

I was hoping that someone can help me work arround with this problem - I cant not  edit any Annual Recuring event in another langauge pack other than English (United States) . eg I get this error when edit in Austrialian  langauge pack :

Server Error in '/' Application.

Conversion from string "12/24/2007" to type 'Date' is not valid.

 

[InvalidCastException: Conversion from string "12/24/2007" to type 'Date' is not valid.]
Microsoft.VisualBasic.CompilerServices.DateType.FromString(String Value, CultureInfo culture) +397796
Microsoft.VisualBasic.CompilerServices.DateType.FromString(String Value) +38
DotNetNuke.Modules.Events.EditEvents.Page_Load(Object sender, EventArgs e) +8836

[ModuleLoadException: Error: Edit Events is currently unavailable.]
DotNetNuke.Services.Exceptions.Exceptions.ProcessModuleLoadException(String FriendlyMessage, PortalModuleBase ctrlModule, Exception exc, Boolean DisplayErrorMessage) +483
DotNetNuke.Services.Exceptions.Exceptions.ProcessModuleLoadException(PortalModuleBase ctrlModule, Exception exc) +100
DotNetNuke.Modules.Events.EditEvents.Page_Load(Object sender, EventArgs e) +10687
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1061

[PageLoadException: Error: Edit Events is currently unavailable.]
DotNetNuke.Services.Exceptions.Exceptions.ProcessPageLoadException(Exception exc, String URL) +362
DotNetNuke.Framework.PageBase.Page_Error(Object Source, EventArgs e) +483
System.Web.UI.TemplateControl.OnError(EventArgs e) +105
System.Web.UI.Page.HandleError(Exception e) +73
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6944
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +154
System.Web.UI.Page.ProcessRequest() +86
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +18
System.Web.UI.Page.ProcessRequest(HttpContext context) +49
ASP.default_aspx.ProcessRequest(HttpContext context) +4
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +154
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsEventsEventsError: Edit Event is currently unavailable.Error: Edit Event is currently unavailable.


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out