c# - Insert values from textboxes to fields in website -


i have 2 textboxes in c# application. , want insert values 2 other textboxes placed in webpage(using webbrowser option there in c#)

how can that?

try:

string strvalue = txtbox1.text; htmldocument doc = this.webbrowser1.document; doc.getelementbyid("txtbox2").setattribute("text", strvalue); 

Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -