Posts Tagged ‘asp.net

开始学习MVC架构

2009年08月17日 星期一

很久之前的一次北京之行, 开始接触并关注这个asp.net项目,但是一直没有花时间和精力来研究学习它。公司的最近几个项目中都或多或少应用了一些新的技术,所以我想现在是时候作点研究工作了,争取能在以后的项目中推广开来。

MVC

MVC 主页: http://asp.net/mvc
几分钟前,看到的新文章:ASP.NET MVC V2 Preview 1 Released

另外的一些动力来源:Should ASP.NET Developers Learn ASP.NET MVC?

How to put javascript in a page using masterpage?

2008年05月12日 星期一

Question:

How to put javascript in a page using masterpage? Error message: Validation (XHTML 1.0 Transitional): Content is not supported outside ’script’ or ‘asp:content’ regions.

Answer:

Place the script inside the <asp:content> tag. Because you are using content area and a master page, the
id will be prefixed with the master and content area names. you should use ClientId to get the actual rendered names.

Link: http://www.velocityreviews.com/forums/t368066-how-to-put-javascript-in-a-page-using-masterpage.html