基本信息
源码名称:asp.net 多语言实现例子
源码大小:0.01M
文件格式:.rar
开发语言:ASP
更新时间:2015-07-28
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
原理:通过资源文件实现多语言
原理:通过资源文件实现多语言
前端代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:Button ID="btnChinese" runat="server"
Text="<%$ Resources: Strings, btnChinese %>" onclick="btnChinese_Click" />
<asp:Button ID="btnEnglish" runat="server"
Text="<%$ Resources: Strings, btnEnglish %>" onclick="btnEnglish_Click" />
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Globalization;
public partial class _Default :PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnChinese_Click(object sender, EventArgs e)
{
Session["Culture"] = "zh-cn";
this.RegisterClientScriptBlock("reload", "<script>window.location=window.self.location;</script>");
}
protected void btnEnglish_Click(object sender, EventArgs e)
{
Session["Culture"] = "en-us";
this.RegisterClientScriptBlock("reload", "<script>window.location=window.self.location;</script>");
}
}
//5/1/a/s/px