此行说未声明服务器。

Dim DecodedString As String = server.UrlDecode(context.Request.Form("DeckName"))


我在顶部导入了system.web。似乎无法弄清楚为什么它不起作用。

最佳答案

请改用HttpUtility

Dim decodedUrl As String = HttpUtility.UrlDecode(encodedUrl)


此处有更多详细信息:
http://msdn.microsoft.com/en-us/library/system.web.httputility.urldecode.aspx

10-05 22:08