TemplateControl.CreateResourceBasedLiteralControl Method
.NET Framework 3.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Accesses literal strings stored in a resource. The CreateResourceBasedLiteralControl method is not intended for use from within your code.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
'Declaration Protected Function CreateResourceBasedLiteralControl ( _ offset As Integer, _ size As Integer, _ fAsciiOnly As Boolean _ ) As LiteralControl 'Usage Dim offset As Integer Dim size As Integer Dim fAsciiOnly As Boolean Dim returnValue As LiteralControl returnValue = Me.CreateResourceBasedLiteralControl(offset, size, fAsciiOnly)
protected LiteralControl CreateResourceBasedLiteralControl ( int offset, int size, boolean fAsciiOnly )
protected function CreateResourceBasedLiteralControl ( offset : int, size : int, fAsciiOnly : boolean ) : LiteralControl
Not applicable.
Parameters
- offset
The offset of the start of the string in the resource.
- size
The size of the string in bytes.
- fAsciiOnly
A Boolean value indicating if the string in the resource contains only 7-bit ASCII characters.
Return Value
A LiteralControl representing a literal string in a resource.Community Additions
ADD
Show: