Hey
When you under management center - > Web and HTTP -> Security enable "Activate antispam funcitonality" the Form.Start in forms add a key in the onsubmit function - which I assume is used for something :) - Is there an easy way to get this key?
Currently this is doing the trick:
System.Text.RegularExpressions.Regex.Match(GetString("Form.Start"), "<form.+?onsubmit=[\"](.+?)[\"].*?>", System.Text.RegularExpressions.RegexOptions.IgnoreCase).Groups[1].Value;
But I would prefer to just be able to access anything generated in all the .Start and .End tags without having to regrex it out - that ofc. goes for anywere you have start/end as we often prefer to make them ourselves.
So is it already possible? If so - how?
If not - please move this to feature request :)