多语言开发 之 通过基页类及Session 动态响应用户对语言的选择

在用户通过UserLogin.aspx登录系统时 提供其对语言的选择
选择后 将所选存入Session 以便登录系统后的其他页面进行按语言显示
当然相关页面需要支持多语言
具体信息可参看
使用 根据语言环境不同 而显示不同的 资源本地化 ASP.NET 网页
App_Code下定义基页类 BasePage.cs

ContractedBlock.gifExpandedBlockStart.gifCode
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using MyStudy.BLL;

using System.Threading;
using System.Globalization;

namespace MyStudy.Common
{
    
/// <summary>
    
/// BasePage的摘要说明
    
/// </summary>
    public class BasePage : System.Web.UI.Page
    {
        
public BasePage()
        {
            
//
            
// TODO: 在此处添加构造函数逻辑
            
//
        }
        
        
//各子页可公用的相关信息
        public string MyCommonInfo
        {
            
get
            {
                
//
                return "";
            }
        }

        
//处理用户所选择的语言种类
        protected override void InitializeCulture()
        {
            
if (Session["myCurrentUICulture"!= null && Session["myCurrentCulture"!= null)
            {
                
if (Session["myCurrentUICulture"].ToString() != "" && Session["myCurrentCulture"].ToString() != "")
                {
                    System.Threading.Thread.CurrentThread.CurrentUICulture 
= CultureInfo.CreateSpecificCulture(Session["myCurrentUICulture"].ToString()); //"en"; 
                    System.Threading.Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(Session["myCurrentCulture"].ToString()); //"en"; 
                }
            }
            
base.InitializeCulture();
        }
    }
}

 

那么登录页面的示例代码为:

ContractedBlock.gifExpandedBlockStart.gifCode
public partial class UserLogin : BasePage
{
    
protected void Page_Load(object sender, EventArgs e)
    { 
        
if (!IsPostBack)
        {
            
if (Session["myCurrentUICulture"!= null && Session["myCurrentCulture"!= null)
            {
                
if (Session["myCurrentUICulture"].ToString() != "" && Session["myCurrentCulture"].ToString() != "")
                {
                    
this.ddl_Language.SelectedValue = Session["myCurrentUICulture"].ToString();// 
                }
            }
            
else
            {
                
string str = System.Threading.Thread.CurrentThread.CurrentUICulture.ToString();
                
this.ddl_Language.SelectedValue = str;// 
                Session["myCurrentUICulture"= this.ddl_Language.SelectedValue;
                Session[
"myCurrentCulture"= this.ddl_Language.SelectedValue;
            }
        }
    }

    
protected void ddl_Language_SelectedIndexChanged(object sender, EventArgs e)
    {
        Session[
"myCurrentUICulture"= this.ddl_Language.SelectedValue;
        Session[
"myCurrentCulture"= this.ddl_Language.SelectedValue;

        Response.Redirect(
"UserLogin.aspx",true);
    }
}

 

 

转载于:https://www.cnblogs.com/freeliver54/archive/2009/06/30/1513810.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/379630.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java ClassLoader findSystemClass()方法与示例

ClassLoader类findSystemClass()方法 (ClassLoader Class findSystemClass() method) findSystemClass() method is available in java.lang package. findSystemClass()方法在java.lang包中可用。 findSystemClass() method is used to find the class with the given binary …

TFS 链接不上

C:\Users\Administrator>net use 会记录新的网络连接。 列表是空的。 C:\Users\Administrator>net use \\192.168.1.61\ipc$ wangkun /user:wangkun 命令成功完成。 转载于:https://www.cnblogs.com/rhythmK/archive/2012/06/04/2534066.html

Linux内核设计与实现---虚拟文件系统

虚拟文件系统1 通用文件系统2 文件系统抽象层3 Unix文件系统4 VFS对象及其数据结构其他VFS对象5 超级快对象超级块操作6 索引节点对象索引节点操作7 目录项对象目录项状态目录项缓存目录项操作8 文件对象9 和文件系统相关的数据结构10 和进程相关的数据结构11 Linux中的文件系统…

Oracle 查询历史数据(转帖)

回复误删除数据信息。 1、执行 alter table table_name enable row movement; 2、执行 FlashBack table table_name to timestamp to_timestamp(2012-05-24 14:59:36,yyyy-mm-dd hh24:mi:ss); 查询历史操作数据信息。 比较合理的方法是先从闪回区查找出被误删的数据&#xff0c…

Java里面的几种路径的区别

1&#xff0c;相对路径 相对路径就是指由这个文件所在的路径引起的跟其它文件&#xff08;或文件夹&#xff09;的路径关系。 也就是说&#xff1a; 对于如图所示&#xff1a;一news.html为例 在WEB15工程下的WebContent下的WEB-INF下的news.html 当我访问的news.html的时候…

Linux内核设计与实现---块I/O层

块I/O层1 解刨一个块设备2 缓冲区和缓冲区头3 bio结构体新老方法对比4 请求队列5 I/O调度程序I/O调度程序的工作Linus电梯最终期限I/O调度程序预测I/O调度程序完全公正的排队I/O调度程序空操作的I/O调度程序I/O调度程序的选择系统中能够 随机访问 固定大小数据片的设备被称为块…

Java字符类isUpperCase()方法与示例

角色类isUpperCase()方法 (Character class isUpperCase() method) isUpperCase() method is available in java.lang package. isUpperCase()方法在java.lang包中可用。 isUpperCase() method is used to check whether the given char value is uppercase or not. isUpperCas…

javascript:history.go()和History.back()的区别

javascript:history.go()和History.back()的区别收藏 <input typebutton value刷新 οnclick"window.location.reload()"> <input typebutton value前进 οnclick"window.history.go(1)"> <input typebutton value后…

sql查询行转列

--SQL 面试题 /* 问题&#xff1a;假设有张学生成绩表(tb)如下: 姓名 课程 分数 张三 语文 74 张三 数学 83 张三 物理 93 李四 语文 74 李四 数学 84 李四 物理 94 想变成(得到如下结果)&#xff1a; 姓名 语文 数学 物理 ---- ---- ---- ---- 李四 74 84 94 张三 74 83 93 --…

算法---数

数1 最大公约数2 最小公约数3 进制转换4 阶乘统计阶乘尾部0的个数5 字符串加法减法二进制加法6 多数投票问题数组中出现次数多于n/2的元素7 相遇问题改变数组元素使所有元素都相同1 最大公约数 欧几里得算法&#xff1a;两个整数的最大公约数等于其中较小的那个数和两数相除余…

Java ByteArrayOutputStream reset()方法及示例

ByteArrayOutputStream类reset()方法 (ByteArrayOutputStream Class reset() method) reset() method is available in java.io package. reset()方法在java.io包中可用。 reset() method is used to reset this stream (i.e. it removes all currently consumed output in thi…

使用存储过程修改sql server 2005 用户密码

exec sp_password null,新密码,用户名转载于:https://www.cnblogs.com/SXLBlog/archive/2009/07/10/1520590.html

winform TopMost

当设置winform窗体的TopMost属性为true时&#xff0c;有时会出现不好使的状况&#xff0c;这可能是因为窗体设置了MdiParent属性。转载于:https://www.cnblogs.com/magic-cube/archive/2012/06/10/2544216.html

Linux内核设计与实现---进程地址空间

进程地址空间1 内存描述符分配内存描述符销毁内存描述符mm_struct与内核线程2 内存区域VMA标志VMA操作内存区域的树形结构和内存区域的链表结构3 操作内存区域find_vma()find_vma_prev()find_vma_intersection()4 mmap()和do_mmap()&#xff1a;创建地址空间mmap&#xff08;&a…

JavaScript中带有示例的Math.log10()方法

JavaScript | Math.log10()方法 (JavaScript | Math.log10() Method) Math operations in JavaScript are handled using functions of math library in JavaScript. In this tutorial on Math.log10() method, we will learn about the log10() method and its working with e…

JSP技术

一、jsp脚本和注释 jsp脚本&#xff1a; 1&#xff09;<%java代码%> ----- 内部的java代码翻译到service方法的内部 2&#xff09;<%java变量或表达式> ----- 会被翻译成service方法内部out.print() 3&#xff09;<%!java代码%> ---- 会被翻译成servlet的成…

jQuery.ajax不能实现return值调用问题

我们使用jQuery.ajax函数是不能实现success方法return值的&#xff0c;而有时候我们需要对成功返回的数据进行处理&#xff0c;一般来说&#xff0c;与服务器交互后会返回很多的数据&#xff0c;而有些数据需要进行特别处理&#xff0c;这时需要实现success方法return&#xff…

Linux内核设计与实现---页高速缓存和页回写

页高速缓存和页回写1 页高速缓存2 基树3 缓冲区高速缓存4 pdflush后台例程膝上型电脑模式bdflush和kupdated避免拥塞的方法&#xff1a;使用多线程页高速缓存&#xff08;cache&#xff09;是Linux内核实现的一种主要磁盘缓存&#xff0c;通过把磁盘中的数据缓存到物理内存中&a…

EL技术

1&#xff0e;EL 表达式概述 EL&#xff08;Express Lanuage&#xff09;表达式可以嵌入在jsp页面内部&#xff0c;减少jsp脚本的编写&#xff0c;EL 出现的目的是要替代jsp页面中脚本的编写。 2&#xff0e;EL从域中取出数据(EL最重要的作用) jsp脚本&#xff1a;<%requ…

math.trunc_JavaScript中带有示例的Math.trunc()方法

math.truncJavaScript | Math.trunc()方法 (JavaScript | Math.trunc() Method) Math.trunc() is a function in math library of JavaScript that is used to extract the integer part of the given floating-point number. It removes the decimal and all the digits after…