Tag: asp mvc

如何在ASP.NET MVC3中configuration区域

有谁知道如何在ASP.NET MVC3configuration区域。 我在这里读了一篇关于地区的文章。 但那篇文章不是基于MVC3的。 在MVC3中,在Global.asax中找不到RouteCollection routes名为MapRootArea函数 routes.MapRootArea("{controller}/{action}/{id}", "AreasDemo", new { controller = "Home", action = "Index", id = "" }); 当我使用MVC3创build一个新区域时,我得到了一个从AreaRegistrationinheritance的区域的类,如下所示:(这里的Blogs是区域名称) public class BlogsAreaRegistration : AreaRegistration { public override string AreaName { get { return "Blogs"; } } public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "Blogs_default", "Blogs/{controller}/{action}/{id}", new { action = "Index", id = UrlParameter.Optional […]

如何使用ApiController返回原始string?

我有一个ApiController服务XML / JSON,但我想我的行动之一,以返回纯HTML。 我试过下面,但它仍然返回XML / JSON。 public string Get() { return "<strong>test</strong>"; } 这就是上面的回报: <string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">&lt;strong&gt;test&lt;/strong&gt;</string> 有没有办法只返回纯粹的,未转义的文本,甚至没有周围的XML标签(也许是不同的返回types的行为属性)?

什么是Web.Debug.config和Web.Release.Config文件?

我刚刚升级到Visual Studio 2010和MVC 2.0,我注意到Web.config有两个附加的文件附加到它? 这些文件是用来指定debugging和发布特定的设置,所以你不要凌乱主Web.config? 如果我在debugging和释放Web.configs中分别具有本地和远程的连接string,那么将连接string放在根Web.config文件中是否有意义? 谢谢!