TemplateControl.GetLocalResourceObject 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取页级别的资源。
重载
GetLocalResourceObject(String) |
根据指定的 ResourceKey 属性获取页级别的资源对象。 |
GetLocalResourceObject(String, Type, String) |
根据指定的 ResourceKey 属性、对象类型和属性名称获取页级别的资源对象。 |
GetLocalResourceObject(String)
根据指定的 ResourceKey 属性获取页级别的资源对象。
protected:
System::Object ^ GetLocalResourceObject(System::String ^ resourceKey);
protected object GetLocalResourceObject (string resourceKey);
member this.GetLocalResourceObject : string -> obj
Protected Function GetLocalResourceObject (resourceKey As String) As Object
参数
- resourceKey
- String
表示 ResourceKey 的字符串。
返回
表示所请求资源对象的对象;如果不存在这样的对象,则为 null
。
示例
下面的代码示例演示如何使用 GetLocalResourceObject 方法从位于 App_LocalResources 文件夹中的本地页面资源访问名为 LocalResourceString1
的字符串。
<%@ Page Language="C#" Culture="auto" UICulture="auto" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
string localresourcestring;
string globalresourcestring;
// Get the local resource string.
try
{
localresourcestring = "Found the local resource string and it's value is: " +
(String)GetLocalResourceObject("LocalResourceString1") + ".";
}
catch
{
localresourcestring = "Could not find local resource.";
}
// Get the global resource string.
try
{
// Look in the global resource file called MyResource.resx.
globalresourcestring = "Found the global resource string and it's value is: " +
(String)GetGlobalResourceObject("MyResource", "GlobalResourceString1") + ".";
}
catch
{
globalresourcestring = "Could not find global resource.";
}
LocalResourceMessage.InnerText = localresourcestring;
GlobalResourceMessage.InnerText = globalresourcestring;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>TemplateControl GetGlobalResourceObject and GetLocalResourceObject Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>TemplateControl GetGlobalResourceObject and GetLocalResourceObject Example</h3>
<span id="LocalResourceMessage"
runat="server"/>
<br />
<span id="GlobalResourceMessage"
runat="server" />
</div>
</form>
</body>
</html>
<%@ Page Language="VB" Culture="auto" UICulture="auto" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Dim localresourcestring As String
Dim globalresourcestring As String
' Get the local resource string.
Try
localresourcestring = "Found the local resource string and it's value is: " & _
Convert.ToString(GetLocalResourceObject("LocalResourceString1")) & "."
Catch
localresourcestring = "Could not find local resource."
End Try
' Get the global resource string.
Try
' Look in the global resource file called MyResource.resx.
globalresourcestring = "Found the global resource string and it's value is: " & _
Convert.ToString(GetGlobalResourceObject("MyResource", "GlobalResourceString1")) & "."
Catch
globalresourcestring = "Could not find global resource."
End Try
LocalResourceMessage.InnerText = localresourcestring
GlobalResourceMessage.InnerText = globalresourcestring
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>TemplateControl GetGlobalResourceObject and GetLocalResourceObject Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>TemplateControl GetGlobalResourceObject and GetLocalResourceObject Example</h3>
<span id="LocalResourceMessage"
runat="server"/>
<br />
<span id="GlobalResourceMessage"
runat="server" />
</div>
</form>
</body>
</html>
注解
本地资源文件存储在 App_LocalResources 目录中。 有关详细信息,请参阅 ASP.NET 应用程序中的资源
另请参阅
适用于
GetLocalResourceObject(String, Type, String)
根据指定的 ResourceKey 属性、对象类型和属性名称获取页级别的资源对象。
protected:
System::Object ^ GetLocalResourceObject(System::String ^ resourceKey, Type ^ objType, System::String ^ propName);
protected object GetLocalResourceObject (string resourceKey, Type objType, string propName);
member this.GetLocalResourceObject : string * Type * string -> obj
Protected Function GetLocalResourceObject (resourceKey As String, objType As Type, propName As String) As Object
参数
- resourceKey
- String
表示 ResourceKey 的字符串。
- objType
- Type
要获取的资源对象类型。
- propName
- String
要获取的资源对象的属性名称。
返回
表示所请求资源对象的对象;如果不存在这样的对象,则为 null
。
注解
本地资源文件存储在 App_LocalResources 目录中。 有关详细信息,请参阅 ASP.NET 应用程序中的资源