我正在使用ektron 9.Suppose我在ektron工作区有一些html表格。 我需要使用captcha在ektron页面构建器页面中验证表单。 有没有办法用Ekron表格控件来做,或者有什么办法在ektron中实现同样的目标?
答案 0 :(得分:0)
Ektron客户门户网站上有一个样本。 https://portal.ektron.com/KB/10246/
以下示例
<%@ Page Language="C#" %>
<%@ Register Assembly="Ektron.Cms.Framework.UI.Controls" Namespace="Ektron.Cms.Framework.UI.Controls" TagPrefix="cms" %>
<%@ Register TagPrefix="cms" Namespace="Ektron.Cms.Controls" Assembly="Ektron.Cms.Controls" %>
<!DOCTYPE html>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
captcha1.Visible = false;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<%-- You will need to change the DefaultFormID --%>
<ektron:FormControl id="FormBlock1" runat="server" DefaultFormID="414" AddValidation="True" DynamicParameter="ekfrm"></ektron:FormControl>
<cms:Captcha ID="captcha1" runat="server" Visible="true"/>
</div>
</form>
</body>
</html>
答案 1 :(得分:-1)
表单块控件在页面生命周期的早期读取表单的值。阻止表单块控件读取值的唯一方法是在pre-init中抛出异常。 response.Redirect抛出一个线程中止异常。您可以重定向到同一页面。在这种情况下,用户丢失所有输入。如果将它与某些客户端验证结合起来,那么如果用户是一名打败客户端验证的黑客,那么用户应该只在服务器端失败。