.net 简体转换繁体实例,繁体转换简体 Encode.dll下载_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > .net 简体转换繁体实例,繁体转换简体 Encode.dll下载

.net 简体转换繁体实例,繁体转换简体 Encode.dll下载

 2014/11/8 21:08:46  平民的麦田  程序员俱乐部  我要评论(0)
  • 摘要:在项目中先引用Encode.dll下面是下载地址:Encode.dll1、html页面代码<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="简繁转换.aspx.cs"Inherits="ASP.NET_语言基础.简繁转换"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1
  • 标签:.net net 下载 实例

在项目中先引用Encode.dll  下面是下载地址:

Encode.dll

 

1、html页面代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="简繁转换.aspx.cs" Inherits="ASP.NET_语言基础.简繁转换" %>

<!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">
    <div>
        <asp:TextBox ID="txtjian" TextMode="MultiLine" Width="500px" Height="200px" runat="server"></asp:TextBox><br />
        <asp:Button ID="btnjtof" runat="server" Text="简体转繁体" onclick="btnjtof_Click" />
        <asp:Button ID="btnftoj" runat="server" Text="繁体转简体" onclick="btnftoj_Click" />
        <br />
         <asp:TextBox ID="txtfan" TextMode="MultiLine" Width="500px" Height="200px" runat="server"></asp:TextBox>
    </div>
    </form>
</body>
</html>

 


界面效果

 

2、后台.cs代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using EncodeMy;

namespace ASP.NET_语言基础
{
    public partial class 简繁转换 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void btnjtof_Click(object sender, EventArgs e)
        {
            EncodeRobert er = new EncodeRobert();
            txtfan.Text = er.SCTCConvert(ConvertType.Simplified, ConvertType.Traditional, txtjian.Text);
        }

        protected void btnftoj_Click(object sender, EventArgs e)
        {
            EncodeRobert er = new EncodeRobert();
            txtfan.Text = er.SCTCConvert(ConvertType.Traditional, ConvertType.Simplified, txtjian.Text);
        }
    }
}

 

3、效果图

效果

 

发表评论
用户名: 匿名