gpt4 book ai didi

asp.net - MVC View 中的 iframe 加载 asp.net web 表单

转载 作者:太空狗 更新时间:2023-10-29 14:44:10 26 4
gpt4 key购买 nike

我有一个名为 ProductsController 的 Controller ,我使用索引方法加载索引 View ,其中包含一个名为 WebForm1.aspx 的 Web 表单,索引 View 已设置并正常工作。现在我想在索引 View 中添加一个iframe来显示WebForm1.aspx的内容。这两个 View 都位于 MVC 项目中的同一文件夹 Views/Products 中。我做了以下事情:

    <iframe src="/ProductsController/Index?WebForm1.aspx" width="1000" height="400">

</iframe>

我的 Views/web.config 设置如下:

WebForm 继承如下:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>

但是 iframe 显示一条错误消息:“HTTP 404 - 您正在寻找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。”

我还尝试将下一行添加到我的 global.asax 文件中:

RouteTable.Routes.RouteExistingFiles = true;

但也失败了,

我让 iFrame 显示但为空的独特方法是使用完整的物理路径,如下所示:

    <iframe src="C\:Folder1\Folder2\ ...\Views\Products\WebForm1.aspx" width="1000" height="400">

</iframe>

有人可以解释为什么它不起作用吗?以及如何让它发挥作用?谢谢。

最佳答案

您应该将您的 .aspx 文件 (webform) 放在 views 文件夹之外,因为通常来自浏览器的任何调用都会被“BlockViewHandler”(您可以在 views 文件夹的 web.config 文件中看到)阻止。

在您创建的任何其他文件夹中,它应该在没有 Controller 的情况下工作。例如,如果您将它放在“/webforms/webform1.aspx”中,那么该路径就是要在 iframe 中使用的路径。

更新这是问题中新信息的示例,希望对您有所帮助:

Controller :

public class ProductsController : Controller
{
public ActionResult Index()
{
return View(); //Razor file in Views/Products/Index.cshtml
}

public ActionResult ActionThatRetrieveAndAspx()
{
return View("WebForm1"); //Aspx file Views/Products/WebForm1.aspx
}
}

Products Index.html的内容,通过iframe调用aspx文件:

@{
ViewBag.Title = "Index title";
}

<h2>Index</h2>

Calling aspx file from iframe:

<iframe src="@Url.Action("ActionThatRetrieveAndAspx","Products")" width="1000" height="400"></iframe>

Products WebForm1.aspx的内容:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Title</title>
</head>
<body style="background-color: #999999; padding: 10px;">
This is ActionThatRetrieveAndAspx WebForm1.aspx
</body>
</html>

关于asp.net - MVC View 中的 iframe 加载 asp.net web 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15450983/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com