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
Показать файл Открыть проект Примеры использования класса

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