Unsure if this is the correct place to ask this question, but i have this code
Which read the response and then i have some other code which splits it all down line by line.
Is there a simple way to convert the text to a readable manner, example 04%3A05%3A49+Dec+19%2C+2008+PST - should be a date, and the + symbol means a space.
Any help or guidance would be great, thanks in advance.
Code:
Dim IPNResponseStream As Stream = strResponse.GetResponseStream
Dim encode As Encoding = System.Text.Encoding.GetEncoding("utf-8")
Dim readStream As New StreamReader(IPNResponseStream, encode)
'read the response into a String variable "temp"
temp = readStream.ReadToEnd
Which read the response and then i have some other code which splits it all down line by line.
Is there a simple way to convert the text to a readable manner, example 04%3A05%3A49+Dec+19%2C+2008+PST - should be a date, and the + symbol means a space.
Any help or guidance would be great, thanks in advance.