Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi Anthony,
I found that in the latest source the vwSpam view is missing runat="server".
<asp:View ID="vwSpam">
This means that the following code will cause an error in the HandleRedirects function.
mvForm.ActiveViewIndex = 4;
Simply fixed by adding runat="server" though.
On a side note when setting the active view you may like to use SetActiveView as it's more readble than numbers. ;)
mvForm.SetActiveView(vwSpam);
Cheers,
Matt
Thanks for the bug report!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Error when spam is detected.
Hi Anthony,
I found that in the latest source the vwSpam view is missing runat="server".
This means that the following code will cause an error in the HandleRedirects function.
Simply fixed by adding runat="server" though.
On a side note when setting the active view you may like to use SetActiveView as it's more readble than numbers. ;)
Cheers,
Matt
Thanks for the bug report!
is working on a reply...