摘要:
Step 1 Create new document and set white as background color. Using Rounded reqtangle tool create shape as below. Radius is 5px and foreground color is #3584DE.Step 2 Now go to the blending options for the shapes layer and use "Inner Glow", "Gradient overaly" and "Stroke&quo 阅读全文
摘要:
1.The Controller Action public ActionResult Index() { ViewData["Message"] = "Welcome to ASP.NET MVC!"; return View(); } An action method normally returns an ActionResult and can take zero or many arguments.一个action方法通常情况下返回ActionResult,能够带0个或者多个参数。If the view name matches the act 阅读全文
摘要:
1。asp.net mvc URL routingIIS determines the request should be handled by ASP.NETThe MvcHandler uses IControllerFactory to obtain an instance of IController using the "controller" route data from the route {controller}/{action}/{id}. public static void RegisterRoutes(RouteCollection routes) 阅读全文