网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

net2.0多语言网页的实现

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/13
我昨天结合网上的资料实现了网页的多语言.其中有简体中文,繁体中文,英文三个.主要步骤是:

1.首先建立资源文件strings.resx,再建立strings.en-us.resx,strings.zh-cn.resx,strings.zh_hk.resx.必须要有strings.resx,这个文件可以没有任何内容.但必须有.不然在下面的default.aspx.cs中,visual studio会自动提示把这些资源文件放在App_GlobalResources目录下.

#region Resource
public string Resource(string key)
{
string resourceValue = null;

CultureInfo ci = CultureInfo.CurrentCulture;
ResourceManager rm = Resources.strings.ResourceManager;
resourceValue = rm.GetString(key, ci);
return resourceValue;
}
#endregion


中 Resources.strings.ResourceManager就会访问不到
2.应用程序根目录下建立有时候叫做 ASP.NET 应用程序文件Global.asax.增加以下代码
void Application_BeginRequest(object sender, EventArgs e)
{
try
{
if (Request.Cookies["CultureResource"] != null)
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(Request.Cookies["CultureResource"].Value);
else
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(ConfigurationSettings.AppSettings["DefaultCulture"].ToString());
System.Threading.Thread.CurrentThread.CurrentUICulture = System.Threading.Thread.CurrentThread.CurrentCulture;
}
catch (Exception)
{
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(ConfigurationSettings.AppSettings["DefaultCulture"].ToString());
}

}

每次访问页面时,程序都在运行这段代码一次.不知道有谁能有更好的方法.我觉得这样不是很好.麻烦提示哦!

3.以下是页面的代码
aspx
<TABLE id="Table1" align="center" cellSpacing="0" cellPadding="0" width="100%" border="0">
<colgroup>
<col width="50%">
</col>
<col width="50%">
</col>
</colgroup>
<TR>
<TD align="right"><%=Resource("language") %>:</TD>
<TD>
<asp:Button id="Button1" runat="server" Text="中文" OnClick="Button1_Click"></asp:Button>
<asp:Button id="Button2" runat="server" Text="英文" OnClick="Button2_Click"></asp:Button>
<asp:Button id="Button3" runat="server" Text="繁体中文" OnClick="Button3_Click"></asp:Button>
</TD>
</TR>
<TR>
<TD align="right">
<asp:Label id="Label1" runat="server">Label</asp:Label>:</TD>
<TD>
<asp:TextBox id="txtLoginName" runat="server" Width="100%"></asp:TextBox></TD>
</TR>
<TR>
<TD align="right">
<asp:Label id="Label2" runat="server">Label</asp:Label>:</TD>
<TD>
<asp:TextBox id="txtPassword" runat="server" Width="100%"></asp:TextBox></TD>
</TR>
</TABLE>
a
  • 下一篇资讯: ASP.NET常用代码集合
  • 网学推荐

    免费论文

    原创论文

    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号