System.Web
2.0.0.0
System.Object
The class contains fields that identify an implicit resource key.
An implicit resource is assigned to a control in the following form:
<asp:label runat="server" id="label1" meta:resourcekey="Welcome"
text="Welcome"
ie:text="Welcome Internet Explorer User"
forecolor="blue"/>
During page parsing, an implicit resource is converted into explicit keys in the form [filter:]prefix.property[.subproperty]. Any resource values with the specified prefix (in the preceding example, a prefix of Welcome) are assigned to the matching control properties. For example, suppose values exist in the resource file or source code for the following keys:
Welcome.Text
Ie:Welcome.Text
Welcome.Forecolor
These values are assigned to their respective control properties.
Implicit resource keys can reference only local resources.
Contains fields that identify an implicit resource key.
Constructor
To be added.
Initializes a new instance of the class.
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class with the specified values for the , and properties.
The filter value of an implicit resource key.
The prefix for identifying a group of properties.
A property and subproperty, if provided, for an implicit resource key.
2.0.0.0
Property
System.String
To be added.
The property refers to the value before the colon (:) in an expression. For example, suppose you had an implicit resource in the following form:
<asp:label runat="server" id="label1" meta:resourcekey="Welcome"
text="Welcome"
ie:text="Welcome Internet Explorer User"
forecolor="blue"/>
This resource contains three keys that potentially have localized resource values to retrieve from the resource file or source code. One of these keys is Ie:Welcome.Text, in which "Ie" is the value.
Gets or sets the filter value of an implicit resource key.
2.0.0.0
Property
System.String
To be added.
The property ties together a collection of properties that can be assigned to a control. The property refers to the value after the colon (:) in an expression, if present, and before the first period (.). For example, suppose you had an implicit resource in the following form:
<asp:label runat="server" id="label1" meta:resourcekey="Welcome"
text="Welcome"
ie:text="Welcome Internet Explorer User"
forecolor="blue"/>
This resource contains three keys, Welcome.Text, Ie:Welcome.Text, and Welcome.Forecolor, that potentially have localized resource values to retrieve from the resource file or source code. Each key has "Welcome" as the value.
Gets or sets the prefix for identifying a group of properties.
2.0.0.0
Property
System.String
To be added.
The property specifies the control property to be localized. The property refers to the value after the first period (.) in an expression. For example, suppose you had an implicit resource in the following form:
<asp:label runat="server" id="label1" meta:resourcekey="Welcome"
text="Welcome"
ie:text="Welcome Internet Explorer User"
forecolor="blue"/>
This resource contains three keys, Welcome.Text, Ie:Welcome.Text, and Welcome.Forecolor, that potentially have localized resource values to retrieve from the resource file or source code. Those keys have values of "Text", "Text", and "Forecolor", respectively.
Gets or sets a property and subproperty, if provided, for an implicit resource key.
2.0.0.0