zoukankan      html  css  js  c++  java
  • CultureInfo学习

    <%@ Page Language="C#" ResponseEncoding="utf-8" %>
    <%@Import Namespace="System.Globalization"%>
    <%@Import Namespace="System.Threading"%>



    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

    <script runat="server">
        protected 
    void Page_Load(object send, EventArgs e)
        
    {
            HtmlTableRow r;
            HtmlTableCell c;
            
    int row = 0;

            
    //Titel
            r = new HtmlTableRow();
            r.BgColor 
    = "#0065CE";
            c 
    = new HtmlTableCell(); c.InnerText = "Name"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            c 
    = new HtmlTableCell(); c.InnerText = "DisplayName"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            c 
    = new HtmlTableCell(); c.InnerText = "EnglishName"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            c 
    = new HtmlTableCell(); c.InnerText = "NativeName"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            c 
    = new HtmlTableCell(); c.InnerText = "LCID"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            c 
    = new HtmlTableCell(); c.InnerText = "语言代码"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            c 
    = new HtmlTableCell(); c.InnerText = "ISO 639-1代码"; c.Attributes.Add("style""color:#ffffff;text-align:center;font-weight: bold"); r.Cells.Add(c);
            
            objTable.Rows.Add(r);
            foreach (CultureInfo culture 
    in CultureInfo.GetCultures(CultureTypes.SpecificCultures))
            
    {
                r 
    = new HtmlTableRow();
                
    if (row % 2 == 1)
                    r.BgColor 
    = "Gainsboro";

                c 
    = new HtmlTableCell(); c.InnerText = culture.Name; r.Cells.Add(c);
                c 
    = new HtmlTableCell(); c.InnerText = culture.DisplayName; r.Cells.Add(c);
                c 
    = new HtmlTableCell(); c.InnerText = culture.EnglishName; r.Cells.Add(c);
                c 
    = new HtmlTableCell(); c.InnerText = culture.NativeName; r.Cells.Add(c);
                c 
    = new HtmlTableCell(); c.InnerText = culture.LCID.ToString(); r.Cells.Add(c);
                c 
    = new HtmlTableCell(); c.InnerText = culture.ThreeLetterISOLanguageName; r.Cells.Add(c);
                c 
    = new HtmlTableCell(); c.InnerText = culture.ThreeLetterWindowsLanguageName; r.Cells.Add(c);
                
                objTable.Rows.Add(r);
                row
    ++;
            }


        }

    </script>

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
        
    <title>CultureInfo</title>
        
    <style>
        td
    {font-size:12px}
        
    </style>
    </head>
    <body bgcolor="white" leftmargin="0">
        
    <form id="form1" runat="server">
        
    <div>
        
    <table id="objTable" runat="server"></table> 
        
    </div>
        
    </form>
    </body>
    </html>

  • 相关阅读:
    一张图,理解JAVA体系结构、运行机制、JVN运行机制、Java平台(初学)
    高效的CSS代码(2)
    高效的CSS代码(1)
    hibernate的报错信息a different object with the same identifier value was already associated with the session解决办法
    从tomcat下载文件的配置方法(很全呢)
    mysql中对于时间的处理,时间的滚动,求时间间隔,切换时区等等
    分享一个在js中判断数据是undefined,NaN,null,的技巧
    Java中Date类型如何向前向后滚动时间,( 附工具类)
    如何让tomcat服务器运行在80端口,并且无需输入项目名即可访问项目()
    前端的字符串时间如何自动转换为后端Java的Date属性,介绍springMVC中如何解决时间转换问题
  • 原文地址:https://www.cnblogs.com/goodspeed/p/26494.html
Copyright © 2011-2022 走看看