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

python 3.x - Mapping specific letters onto a list of words -

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -