aspx 에서 head에 runat="server" ?
ASP.NET / 2009. 4. 1. 22:06
aspx 페이지를 만들면
html 의 head 태그에 runat ="server" 라는 게 붙어있다.
head에 runat="server" 라는 게 붙으면
cs 단에서 HtmlHead 클래스를 이용하여 head 를 설정할 수가 있다.
####### MSDN 소스 ######
Style bodyStyle = new Style();
bodyStyle.ForeColor = System.Drawing.Color.Blue;
bodyStyle.BackColor = System.Drawing.Color.LightGray;
// Add the style rule named bodyStyle to the header
// of the current page. The rule is for the body HTML element.
Page.Header.StyleSheet.CreateStyleRule(bodyStyle, null, "body");
// Add the page title to the header element.
Page.Header.Title = "HtmlHead Example";