pkmn-classic-framework/web/test/NameDecode.aspx.cs
2022-09-08 00:24:02 -04:00

27 lines
715 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(" ", ""));
EncodedString4 es = new EncodedString4(data);
litName.Text = Web.Common.HtmlEncode(es.ToString());
}
}
}