2016-08-01 49 views
1

您好我正在使用下面的代碼在vb中編碼的url,但我沒有得到預期的輸出,請幫助。vb UrlEncoding不能正常工作

Dim CancelURL As String = "http://d41a9833f1464bd0a764b77669049fc8.cloudapp.net/Login/Appointment Booking/CancelAppointment.aspx?" & 
            "clhid=" & objLogin.LoggedHeadOrgID & 
            "&apptid=" & objAppt.ID 
      strTemplateString = strTemplateString.Replace("[Cancellation link]", Uri.EscapeDataString(CancelURL)) 

這是我的代碼,我結束了這個

http%3A%2F%2Fd41a9833f1464bd0a764b77669049fc8.cloudapp.net%2FLogin%2FAppointment%20Booking%2FCancelAppointment.aspx%3Fclhid%3D22b53721-a127-41be-95ca-7512b5caad84%26apptid%3Debb09af1-c521-47d6-9a7d-0b411ef3937d 

但我期待

http://d41a9833f1464bd0a764b77669049fc8.cloudapp.net/Login/Appointment Booking/CancelAppointment.aspx?clhid=3D22b53721-a127-41be-95ca-7512b5caad84&apptid=Debb09af1-c521-47d6-9a7d-0b411ef3937d 
+0

爲什麼這不是預期的輸出?什麼*是您的預期產出? –

+0

我需要http://d41a9833f1464bd0a764b77669049fc8.cloudapp.net/Login/Appointment%20Booking/CancelAppointment.aspx?clhid=somevalue like this – Tanmay

+3

不要在評論部分發表實質性澄清;相反,更新你的問題。你需要在問題本身中包含所有相關信息。 –

回答

0

您需要使用Uri.EscapeUriString,因爲這不離開方案

Uri.EscapeUriString("http://foo.com/this is a url") 

'output 
http://foo.com/this%20is%20a%20url