【ASP】简单Url编码和Url解码实例
描述:在数据传输或读取时,有些敏感数据不宜显⽰传输,特别涉及机密或财务信息,因此使⽤编码技术尤为重要。简单实例:
URL编码代码:
protected void Button1_Click(object sender, EventArgs e)
{
if (TextBox1.Text == null)
{
Response.Write("<script>alert('⽂本不存在,⽆法编码')</script>");
}
else
{
string str = TextBox1.Text;在线url网址编码解码
string UrlEncode = Server.UrlEncode(str);
Label1.Text = "编码后的数据" + UrlEncode;
}
}
Url解码代码:
protected void Button2_Click(object sender, EventArgs e)
{
if (TextBox1.Text == null)
{
Response.Write("<script>alert('⽂本不存在,⽆法编码')</script>");
}
else
{
string str = TextBox1.Text;
string UrlDecode = Server.UrlDecode(str);
Label2.Text = "编码后的数据" + UrlDecode;
}
}
扩展:加密类别的其他⽅式
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论