• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NETMVC2实验总结

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

1、以下4个DLL为MVC框架引用,在程序中将引用属性设为复制到本地。

System.ComponentModel.DataAnnotations.dll
System.Web.Abstractions.dll
System.Web.Mvc.dll
System.Web.Routing.dll

  

2、按如下修改,并在开发时注意所有链接使用Url.Action方法来得到,将使程序既可以在IIS5、6下运行,又能在IIS7下保持URL的美观

Web.config的配置项按如下修改:

  <appSettings>
    <add key="controllerSuffix" value=".aspx"/>
  </appSettings>

   <authentication mode="Forms">
     <forms loginUrl="~/Account.aspx/LogOn" timeout="2880"/>
   </authentication>

  

在根目录新建一个Default.aspx,此页只用来转向。内容如下:

<%@ Page Language="C#" AutoEventWireup="true" %>

<%
string url = Request.Url.ToString();
string query = string.Empty;
if (url.IndexOf("?") >= 0)
query = url.Substring(url.IndexOf("?"));
string controllerSuffix = ConfigurationManager.AppSettings["controllerSuffix"];
Response.Redirect("/Home" + controllerSuffix + "/Index" + query);
%>

 

路由注册按如下方法写:

        private static string ControllerSuffix = ConfigurationManager.AppSettings["ControllerSuffix"];

        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                "Default", // Route name
                "{controller}" + ControllerSuffix + "/{action}/{id}", // URL with parameters
                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );
        }

  

3、以上设置在IIS6下能运行,但不能像IIS7下有那样美观的URL,要想做到还需要进一步设置(虚拟主机就没这权限了)

在站点属性中的“主目录”--》“配置”。在下方的“通配符应用程序映射”中插入一个映射,可执行文件交给.NET的“aspnet_isapi.dll”,默认地址一般在“C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll”


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NETCore-使用HealthCheck对程序健康检查发布时间:2022-07-10
下一篇:
动态引用webservice(asp.net)发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap