mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-22 01:44:20 -05:00
26 lines
677 B
C#
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));
|
|
}
|
|
}
|
|
} |