摘要: The routing system has two functions:Examine an incoming URL and figure out for which controller and action the request is intendedGenerate outgoing URLs. These are the URLs that appear in the HTML rendered from our views so that a specific action will be invoked when the user clicks the linkRoutes 阅读全文
posted @ 2012-02-03 11:10 HelloWorld.Michael 阅读(324) 评论(0) 推荐(0)
摘要: HTML normally flows from the top of the browser window down to the bottom,one headline, paragraph, or block-level element on top of another. This word-processor-like display is visually boring , but with CSS,you’re far from stuck with it. ——float.left. Slides the styled element to the left, while co 阅读全文
posted @ 2011-12-27 16:47 HelloWorld.Michael 阅读(150) 评论(0) 推荐(0)
摘要: Three different properties of each border: color, width, and style.Color :The color can be a hexadecimal number, a keyword, or an RGB value, just like with text.Width :A border’s width is the thickness of the line used to draw the border. You can use any CSS measurement type (except percentages) or 阅读全文
posted @ 2011-12-27 15:11 HelloWorld.Michael 阅读(194) 评论(0) 推荐(0)
摘要: When the content inside a styled tag is larger than the style’s defined width and height, some weird things happen.Fortunately, you can control what a browser should do in this situation with the overflow property. Overflow accepts four keywords that control how content that overflows the edges of a 阅读全文
posted @ 2011-12-27 15:11 HelloWorld.Michael 阅读(100) 评论(0) 推荐(0)
摘要: To a browser, any tag is a box with something inside it—text, an image,or even other tags containing other things, as illustrated in below Figure .Surrounding the content are different properties that make up the box:padding is the space between the content and the content’s border. Padding is what 阅读全文
posted @ 2011-12-27 14:00 HelloWorld.Michael 阅读(162) 评论(0) 推荐(0)
摘要: CSS provides a formula for determining a style’s specificity that’s based on a value assigned to the style’s selector—a tag selector, class selector, ID selector, and so on. Here’s how the system works:A tag selector is worth 1 point.A class selector is worth 10 points.An ID selector is worth 100 po 阅读全文
posted @ 2011-12-27 13:29 HelloWorld.Michael 阅读(159) 评论(0) 推荐(0)
摘要: CSS offers a shorthand property called font, which lets you combine the following properties into a single line: font-style ,font-variant ,font-weight , font-size , line-height , and font-family .You don’t have to include every one of these properties, but you must include the font size and font fam 阅读全文
posted @ 2011-12-27 13:05 HelloWorld.Michael 阅读(159) 评论(0) 推荐(0)
摘要: The ServiceHost class implements a finite-state machine. A ServiceHost object can be in one of a small number of states, and there are well defined rules that determine how the WCF runtime transitions a ServiceHost object from one state to another. Some of these transitions occur as the result of sp 阅读全文
posted @ 2011-12-22 16:52 HelloWorld.Michael 阅读(313) 评论(0) 推荐(0)
摘要: A host application makes a service available to client applications by providing one or more endpoints to which clients can send requests. An endpoint contains three pieces of information: 1. The address of the service. The form of a service address depends on several factors,including the transpor. 阅读全文
posted @ 2011-12-16 17:30 HelloWorld.Michael 阅读(254) 评论(0) 推荐(0)
摘要: Serif fontsSerif fonts are best for long passages of text, as it’s widely believed that the serifs—those tiny “feet” at the end of a letter’s main strokes—gently lead the eye from letterto letter, making text easier to read.• “Times New Roman”, Times, serif• Georgia, “Times New Roman”, Times, serif• 阅读全文
posted @ 2011-12-13 12:53 HelloWorld.Michael 阅读(210) 评论(0) 推荐(0)