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

hibernate - How to load global settings frequently used in application in Java -

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

objective c - Ownership modifiers with manual reference counting -