QueryString malformed after URLDecode

后端 未结 11 1429
太阳男子
太阳男子 2020-12-09 11:25

I\'m trying to pass in a Base64 string into a C#.Net web application via the QueryString. When the string arrives the \"+\" (plus) sign is being replaced by a space. It appe

11条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 11:30

    Can't you just assume a space is a + and replace it?

    Request.QueryString["VLTrap"].Replace(" ", "+");
    

    ;)

提交回复
热议问题