pkmn-classic-framework/gts/test/NameDecode.aspx.cs
2015-01-13 20:56:30 -05:00

26 lines
677 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using PkmnFoundations.Support;
using GamestatsBase;
using PkmnFoundations.Web;
namespace PkmnFoundations.GTS.test
{
public partial class NameDecode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnSubmit_Click(object sender, EventArgs e)
{
byte[] data = GamestatsBase.Common.FromHexString(txtName.Text.Replace(" ", ""));
litName.Text = Web.Common.HtmlEncode(EncodedString4.DecodeString(data));
}
}
}