摘要:
http://weblogs.asp.net/scottgu/archive/2010/12/15/asp-net-mvc-3-razor-s-and-lt-text-gt-syntax.aspxThis is another in a series of posts I’m doing that cover some of the new ASP.NET MVC 3 features:New @model keyword in Razor (Oct 19th)Layouts with Razor (Oct 22nd)Server-Side Comments with Razor (Nov 1 阅读全文
2013年2月21日
摘要:
http://blog.joycode.com/scottgu/archives/2011/05/25/116617.joyASP.NET MVC 3支持一项名为“Razor”的新视图引擎选项(除了继续支持/加强现有的.aspx视图引擎外)。当编写一个视图模板时,Razor将所需的字符和击键数减少到最小,并保证一个快速、通畅的编码工作流。与大部分模板的语法不同,在Razor的帮助下,您不需要中断代码编写,仅仅为了在HTML中标注服务器端代码块的开始和结束。代码分析器足够聪明,它能够从你的代码里推断出是否为服务器端代码。这种更加简洁、富有表现力的语法更加干净,输入也更快速,有趣。您可以从过去9个 阅读全文
摘要:
用C#写了个windows服务程序,更改exe.config后,必须重新启动服务才能读取到新的配置值,如何使配置文件实时生效?在代码中读取配置项值之前:decimal.TryParse(System.Configuration.ConfigurationManager.AppSettings["StartHour"], out StartForbidHour);先System.Configuration.ConfigurationManager.RefreshSection("appSettings");使得直接从磁盘读取,获得新值。【转载】C#读写配置 阅读全文