在我的 InfoPath 表单中,我有一个按钮,我想在点击时重定向到自定义 URL。我已经尝试过Response.Redirect
,Server.Transfer
但SPUtilities.Redirect
它们都不起作用。
当我尝试
HttpContext.Response.Redirect("http://google.com", false);
我的表单显示错误消息:严重错误...
在我的 InfoPath 表单中,我有一个按钮,我想在点击时重定向到自定义 URL。我已经尝试过Response.Redirect
,Server.Transfer
但SPUtilities.Redirect
它们都不起作用。
当我尝试
HttpContext.Response.Redirect("http://google.com", false);
我的表单显示错误消息:严重错误...
您在发布 InfoPath Forms Services 时无法重定向,但可以在您自己的 XmlFormView webpart 上托管启用浏览器的 InfoPath 表单,然后通知主机重定向。
这是我的解决方案:
您可以使用 XmlForm 类的 NotifyHost 方法将通知发送到表单模板的托管环境。
将以下代码添加到 Button 控件的 Clicked 事件处理程序:
NotifyHost("Redirect")
NotifyHost方法引发XmlFormView控件的NotifyHost事件。
创建 VisualWebPart 项目并将XmlFormView控件添加到 VisualWebPart,必须添加
OnNotifyHost="XmlFormView1_NotifyHost"
和
XsnLocation="http://ServerName/FormServerTemplates/MyFormTemplate.xsn"
<cc1:XmlFormView ID="XmlFormView1" runat="server" XsnLocation="http://ServerName/FormServerTemplates/MyFormTemplate.xsn" OnNotifyHost="XmlFormView1_NotifyHost" />
连接事件后,必须在 VisualWebPart 的代码隐藏中实现 XmlFormView1_NotifyHost 事件处理程序,如下所示:
protected void XmlFormView1_NotifyHost(object sender, NotifyHostEventArgs e)
{
...
}
将 NotifyHost 事件连接到事件处理程序后,您可以在事件处理程序中编写代码来注册和执行 JScript 代码。
protected void XmlFormView1_NotifyHost(object sender, NotifyHostEventArgs e)
{
if (e.Notification == "Redirect")
{
string jsCode = "window.location='http://www.google.com';";
Page.ClientScript.RegisterStartupScript(typeof(string), "RedirectScript", jsCode, true);
}
}