URLエンコードについてはこちらの記事を参照してください。
HttpUtility.UrlDecode( [変換する文字列] )
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Web;
namespace URLDecodeDemo
{
public partial class FormMain : Form
{
public FormMain()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
textBox2.Text = HttpUtility.UrlDecode(textBox1.Text);
}
}
}
textBox2.Text = HttpUtility.UrlDecode(textBox1.Text);
UrlDecode
メソッドの第二引数に利用するエンコーディングの System.Text.Encoding
クラスを与えます。using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Web;
namespace URLDecodeDemo
{
public partial class FormMain : Form
{
public FormMain()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
textBox2.Text = HttpUtility.UrlDecode(textBox1.Text, System.Text.Encoding.GetEncoding("Shift-JIS"));
}
}
}