Dim l_sFinalURL As String
Dim newvalue As String = "59d48be55da43f812fdaa923070487e1"
Dim l_sResultURL As String = l_mMapJson.Get("url")
l_sResultURL = Main.G_StringUtils.DecodeUrl(l_sResultURL, "UTF8")
Dim pos As Int = l_sResultURL.IndexOf("token=")
If pos > -1 Then
Dim urlparam As String = l_sResultURL.SubString(pos)
Dim params() As String = Regex.Split("&", urlparam)
For Each param As String In params
If param.StartsWith("token") Then
Dim token() As String = Regex.Split("=", param)
l_sFinalURL = l_sResultURL.Replace(token(1), newvalue) & "¬imeout=1"
End If
Next
Else
l_sFinalURL = l_sResultURL & IIf(l_sResultURL.Contains("?"), "&", "?") & "token=" & newvalue & "¬imeout=1"
End If
ShowWebSite(l_sFinalURL)