Jump to content
php.lv forumi

C# navigate jautājums


Kikisss

Recommended Posts

webBrowser1.Navigate("http://www.xxxxxxxx.lv/?id=" & skaitlis); ?

 

Kur tas ģenerētais skaitlis rodas?

private void btn3_Click(object sender, EventArgs e)
       {
           counter++;     
       }

 

Bet tāpat izmet error...

Operator '&' cannot be applied to operands of type 'string' and 'int'

bet ja pieliek skaitlis.ToString tad-

Error	1	Operator '&' cannot be applied to operands of type 'string' and 'method group'

Edited by Kikisss
Link to comment
Share on other sites

Hmm, nu kur ir problēma? Nodefinēt klases mainīgo, vai piekabināt stringam klāt mainīgo?

 

Ok, kāds simbols tiek izmantots C# lai apvienotu stringus?

(biju domājis ka &, jo VB.nET tā ir)

 

Edit: izmanto + zīmi...

Edited by briedis
Link to comment
Share on other sites

Hmm, nu kur ir problēma? Nodefinēt klases mainīgo, vai piekabināt stringam klāt mainīgo?

 

Ok, kāds simbols tiek izmantots C# lai apvienotu stringus?

(biju domājis ka &, jo VB.nET tā ir)

 

Edit: izmanto + zīmi...

Paldies. Ar + sanāca

Edited by Kikisss
Link to comment
Share on other sites

Vispār jau C# nav pārlūku valoda.

 

Un atbilde tavam jautājumam ir (ja id ir skaitliska tipa mainīgais):

webBrowser1.Navigate(String.Format("http://www.xxxxxxxx.lv/?id=%1", id));

vai

webBrowser1.Navigate("http://www.xxxxxxxx.lv/?id=" + id.ToString());

vai arī vienkārši +, ja id ir string tipa mainīgais:

webBrowser1.Navigate("http://www.xxxxxxxx.lv/?id=" + id);

 

Jebkurā C# pamatu grāmatā/pamācībā, tas ir rakstīts.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...