Adds the specified literal content to a control. This method is called by the ASP.NET page framework.
Namespace: System.Web.UI Assembly: System.Web (in system.web.dll)
Override the AppendLiteralString method to control how literal content between the control's opening and closing tags is processed. Literal content can be any text that is passed by the browser to the server control. For example, any HTML elements and text, between their opening and closing tags, are literal content.
// Override the AppendLiteralString method so that literal
// text between rows of controls are ignored.
public void AppendLiteralString(String s)
{
// Ignores literals between rows.
} //AppendLiteralString
Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.