我有一个标签(Label1.Text),它包含我程序中所有计算器条目的历史记录。我找到了一种检索cookie的方法,但它包含以下奇怪的字符。我该如何删除它们?
%0D%0a5 + 5 = 10
Sub Page_Load(s As Object, e As EventArgs)
If Request.Cookies("Cookie") IsNot Nothing Then
Label1.Text = Server.HtmlEncode(Request.Cookies("Cookie").Value)
End If
End Sub
答案 0 :(得分:1)
使用:
Label1.Text = Uri.UnescapeDataString(Request.Cookies("Cookie").Value)