I am trying to pass a string from a C# Winforms application to a webpage text box.
The Webpage textbox looks like this:
<input id ="sometext" class = "form-control-sometext clearable"
placholder = "Enter Infor Here" type = "text" name = "moreText">
I have tried several methods such as the following:
//string v = textBoxAutoV.Text;
//string getPage = "http://www.TheWebsite.com?moreText = v;
The information is needed to process an information request and return a string value. I would like to see a code sample if possible. Thank you.
You should try the following way: