English 中文(简体)
特殊类型的服务器侧面 包含 Asp.net MVC
原标题:Special kind of Server Side Include of Asp.net MVC

我必须要创建一个新的 asp. net mvc 页面, 整合服务器边静态上以 cms 提供的内容。 我的 mvc 页面提供了一个带有导航的总页, 某些链接应该指向 cms (安装在同一服务器上) 的页面 。 它应该像“ 服务器边 Iframe ” 一样 。

我的想法是创建一个控制器,该控制器使用网络请求装入 cmms 的页面, 提取页面的正文部分, 并将提取的数据传送到视图中。 视图仅输出 passed html. i 还计划添加一些逻辑, 将邮递请求传送到 cms( 用于新闻信件订阅、 联系表 ) 。

现在,我的问题是:能否实施这一解决方案? 还是在服务器方面有更好的方法做到这一点?

最佳回答

您能否使用 < a href=> "http://www.iis.net/ download/application requestrouting" rel=“nofollow” > application request Routing 来将请求交给您的 CMS, 或者您需要将外部提供的内容包含在现有的主页中?

如果你需要使用主页,我会坚持你建议的解决办法,尽管我可能会调查最有力和最有效的办法,从内容管理系统中查询内容,也许查封是一个好办法。

问题回答

这无疑是有可能的,但跟踪用户、认证、饼干等,这似乎是一个非常乏味的工作。 此外,在您的监查中心网站嵌入 cs 类、硬编码符号等内容管理系统,可能会让你头痛欲绝。

如果CMS不是家产的,它可能有一个API。 在这种情况下,我更愿意使用API来获取我所需要的数据,然后用纯的MVC来提供这些数据。 这样可以让您与CMS更清洁、更稳定的结合。





相关问题
WebForms and ASP.NET MVC co-existence

I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I ve done to make that happen is that I added a namespaces node to the WebForms web.config: <pages ...

Post back complex object from client side

I m using ASP.NET MVC and Entity Framework. I m going to pass a complex entity to the client side and allow the user to modify it, and post it back to the controller. But I don t know how to do that ...

Create an incremental placeholder in NHaml

What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required ...

asp.net mvc automapper parsing

let s say we have something like this public class Person { public string Name {get; set;} public Country Country {get; set;} } public class PersonViewModel { public Person Person {get; ...

structureMap mocks stub help

I have an BLL that does validation on user input then inserts a parent(PorEO) and then inserts children(PorBoxEO). So there are two calls to the same InsertJCDC. One like this=>InsertJCDC(fakePor)...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

热门标签