iOS Question How to add variable at the end of Url

Baris Karadeniz

Active Member
Licensed User
I use webview in my app. But end of the url is variable. I put + between them but it didn't work. What should I do?

B4X:
Sub BtnMessage_Click
    NavControl.ShowPage(Page5)
    Dim Url As String
    Url = "http://www.xxx.com/yyy" + TextFieldUser.Text
    WebView5.LoadUrl(Url)
End Sub
 
Top