我有一个标签 (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