how to decode a url in vb.net

前端 未结 3 1717
谎友^
谎友^ 2021-01-21 02:08

This line says server is not declared.

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

I have imports system

相关标签:
3条回答
  • 2021-01-21 02:25
    Imports System.Net
    
    Dim DecodedString As String = WebUtility.UrlDecode(context.Request.Form("DeckName"))
    

    This should work for vb.net. I tried the HttpUtility but it doesn't recognize even i imported System.Web.

    0 讨论(0)
  • 2021-01-21 02:43

    This is old and K3N already provided a great answer.. but I believe the 's' in 'server' should be capitalized in your code. That may have been the issue.

    0 讨论(0)
  • 2021-01-21 02:52

    Use HttpUtility instead.

    Dim decodedUrl As String = HttpUtility.UrlDecode(encodedUrl)
    

    More details here:
    http://msdn.microsoft.com/en-us/library/system.web.httputility.urldecode.aspx

    0 讨论(0)
提交回复
热议问题