目录:
Windows Messages
Message Types
System-Defined Messages
Application-Defined Messages
Message Routing
Queued Messages
Nonqueued Messages
Message Handling
Message Loop
Window Pr...
分类:
其他好文 时间:
2014-08-27 09:27:18
阅读次数:
405
配置两台路由器,A&B。A-RIPv1,B-RIPv2配置如下:ALoo0:1.1.1.132g0/0/012.12.12.1BLoo0:2.2.2.232g0/0/012.12.12.2问:Aping2.2.2.2与Bping1.1.1.1,谁通谁不通?我们先看routing-table[RTA]disiprouRouteFlags:R-relay,D-downloadtofib--------------------------------..
分类:
其他好文 时间:
2014-08-26 09:57:26
阅读次数:
330
MVC路由设置 App_Start/RouteConfig.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace Mvclogin
{
public...
分类:
Web程序 时间:
2014-08-25 17:05:54
阅读次数:
181
《1》
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace MvcFirst
{
public class RouteConfig
{
...
分类:
Web程序 时间:
2014-08-25 17:01:45
阅读次数:
164
juniper下的JUNOS浮动路由写法routing-options{static{route172.26.11.0/24{qualified-next-hop192.168.18.34{metric5;}qualified-next-hop192.168.18.30{metric10;}}}}
分类:
其他好文 时间:
2014-08-22 10:59:26
阅读次数:
280
Background
Problems that require minimum paths through some domain appear in many different areas of computer science. For example, one of the constraints in VLSI routing problems is minimizing wire ...
分类:
其他好文 时间:
2014-08-18 00:20:23
阅读次数:
331
目录概述路由特性使用路由可选参数和参数的默认值路由前缀默认路由路由约束自定义路由约束路由名区域(Area)总结系列文章[Asp.net MVC]Asp.net MVC5系列——第一个项目[Asp.net MVC]Asp.net MVC5系列——添加视图[Asp.net MVC]Asp.net MVC...
分类:
Web程序 时间:
2014-08-17 16:48:32
阅读次数:
310
1.什么样的类能成为控制器?在ASP.NET MVC中,直接或者间接地实现了IController接口的类,就会被Mvc框架认为是控制器。using System.Web.Routing;namespace System.Web.Mvc{ public interface IControlle...
分类:
Web程序 时间:
2014-08-08 17:27:26
阅读次数:
254
web敏捷开发 p317depot > ruby script/console>>rs = ActionController::Routing::routes可以简单测试比如>>puts rs.routes>>rs.recognize_path "/store">>rs.generate :cont...
分类:
其他好文 时间:
2014-08-05 00:31:58
阅读次数:
252
上篇讲到 请求到达 MvcRouteHandler ,并且透过 IRouteHandler.GetHttpHandler 获取到了真正的处理程序 MvcHandler 这次我们看看,MvcHandler是如何依据请求,来激活对应的controller和Action来处理请求的。 一、先看看MvcHa...
分类:
Web程序 时间:
2014-08-02 15:21:33
阅读次数:
320