I'm using the Feedback server webcontrol embedded in an ASP.NET webform page as shown below. But when I get to last page and press the "submit form" button a dialog box is diplayed which is confusing - it states:
"Are you sure you want to navigate away from this page? You have attempted to leave this page. If you have made any choices or entries in your survey all these choices and enteries will be lost. Are you sure you want to exit this page? Press OK to continue, or Cancel to stay on the current page."
This is the same dialog box that pops up when pressing "back to survey". I've tried setting the "ConfirmSurveyExit" option to false but that didn't have an effect. Also tried the "VoidExitConfirmation" property but that had no effect either.
Can anyone help with this please?
<%@ Register TagPrefix="vts" Namespace="DataIllusion.FeedbackServer.WebControls"
Assembly="DataIllusion.FeedbackServer.Core" %>
<table style="border: none; width: 100%;" cellpadding="0" cellspacing="0">
<tr>
<td>
<vts:SurveyBox ID="SurveyPreview" SurveyId="1" Width="700" EnableValidation="true"
runat="server" ShowThanksMessage="False" ConfirmSurveyExit="False"
OnBehaviorActionTriggered="SurveyPreviewBehaviorActionTriggered">
</vts:SurveyBox>
</td>
</tr>
</table>