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
Post a Comment