Issue with Base64-encoded parameter in query string

后端 未结 5 1786
星月不相逢
星月不相逢 2021-01-18 08:56

I\'m sending a link in my web application to users mails (for confirming user registration) as the following :



        
5条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-18 09:36

    You should URL encode the confirm parameter. The error you get is because of the last == fragment.

    For this use HttpServerUtility.UrlEncode or similar framework methods.

提交回复
热议问题