ASPX templates
Version 6.x > ASPX templates > BizForm - UpdatePanel issue View modes: 
User avatar
Member
Member
andrewjknox - 1/5/2012 10:27:08 AM
   
BizForm - UpdatePanel issue
Hi there,
I'm using an ASPX template to place a BizForm. I've referenced it by name and it all comes out and submits fine.

But, when I drop it into an UpdatePanel, it seems to add in a '.' (dot) character to the form field values - one '.' for each submission of the form.

<asp:UpdatePanel ID="upnlContactForm" runat="server">
<ContentTemplate>
<cms:BizForm ID="frmContactUs" runat="server" FormName="TestContactUs" />
</ContentTemplate>
</asp:UpdatePanel>

I don't suppose anyone has any idea on what could be happening?
Regards,
Andrew

User avatar
Member
Member
andrewjknox - 1/5/2012 10:49:25 AM
   
RE:BizForm - UpdatePanel issue
Apologies. The extra character is a ',' (comma) and not a dot.

Regards,
Andrew

User avatar
Member
Member
andrewjknox - 1/5/2012 1:15:28 PM
   
RE:BizForm - UpdatePanel issue
Resolved.

Turns out it was due to a jQuery plugin cloning the biz form. The page therefore had duplicated form name elements (after looking at the posted data going across the wire) and obviously caused an issue.

Apologies again,
Andrew