首页 > 代码库 > .net 简体转换繁体实例,繁体转换简体 Encode.dll下载
.net 简体转换繁体实例,繁体转换简体 Encode.dll下载
在项目中先引用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、效果图
.net 简体转换繁体实例,繁体转换简体 Encode.dll下载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。