C# 클래스 Spring.Web.UI.Controls.Head

This control should be used instead of standard HTML head tag in order to render dynamicaly registered head scripts and stylesheets.
If you need to use ASP.NETs built-in <head> tag, you should nest Spring's Head within ASP.NET's: <html> <head> <title>Some Title</title> <spring:head> <-- will render styleblocks etc. here --> </spring:head> </head> </html>
상속: System.Web.UI.Control
파일 보기 프로젝트 열기: spring-projects/spring-net 1 사용 예제들

Private Properties

프로퍼티 타입 설명
RenderCommonScriptAttributes void
RenderHeadScripts void
RenderScriptBlock void
RenderScriptEvent void
RenderScriptFile void
RenderStyleBlocks void
RenderStyleFiles void

보호된 메소드들

메소드 설명
Render ( System.Web.UI.HtmlTextWriter writer ) : void

Sends server control content to a provided T:System.Web.UI.HtmlTextWriter object, which writes the content to be rendered on the client.

비공개 메소드들

메소드 설명
RenderCommonScriptAttributes ( System.Web.UI.HtmlTextWriter writer, Spring.Web.Support.Script script ) : void
RenderHeadScripts ( System.Web.UI.HtmlTextWriter writer ) : void
RenderScriptBlock ( System.Web.UI.HtmlTextWriter writer, Spring.Web.Support.ScriptBlock script ) : void
RenderScriptEvent ( System.Web.UI.HtmlTextWriter writer, Spring.Web.Support.ScriptEvent script ) : void
RenderScriptFile ( System.Web.UI.HtmlTextWriter writer, Spring.Web.Support.ScriptFile script ) : void
RenderStyleBlocks ( System.Web.UI.HtmlTextWriter writer ) : void
RenderStyleFiles ( System.Web.UI.HtmlTextWriter writer ) : void

메소드 상세

Render() 보호된 메소드

Sends server control content to a provided T:System.Web.UI.HtmlTextWriter object, which writes the content to be rendered on the client.
protected Render ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter The object that receives the server control content.
리턴 void