ERRO WEBCLIENT CONVERT LONG

PEDROALSOI 01/04/2014 15:58:18
#436776
Estou com um erro estranho, veja o meu código abaixo

   Dim t4 As String = internet.DownloadString([Ô]http://localhost/t3.php?t1=[Ô] And TextBox1.Text And [Ô]&t2=[Ô] And TextBox2.Text) 


Quando executo ocorre esse erro:

Citação:

Conversion from string [Ô]http://localhost/t3.php[Ô] to type [ô]Long[ô] is not valid.



Estou checando o arquivo t3.php e esta certo, ele retorna um texto mais ou menos assim: [Ô]t8[Ô] ou [Ô]t9[Ô], então me leva a crer que o erro esta no código vb.net

Obrigado pela atenção.
KERPLUNK 01/04/2014 18:52:10
#436785
Resposta escolhida
Use o método string.Format, o resultado é muito melhor:

Dim t4 As String = String.Format([Ô]http://localhost/t3.php?t1={0}&t2={1}[Ô], TextBox1.Text, TextBox2.Text)
PEDROALSOI 02/04/2014 13:31:42
#436809
Citação:

:
Use o método string.Format, o resultado é muito melhor:


Dim t4 As String = String.Format([Ô]http://localhost/t3.php?t1={0}&t2={1}[Ô], TextBox1.Text, TextBox2.Text)



Funcionou, obrigado mais uma vez Kerplunk
Tópico encerrado , respostas não são mais permitidas