- Impact
- 11
Im trying to make a program which will allow you to type in some information (kind of like Google Autofill) and then you can click a button, and it automaticaly fills in the data you added to the fields on the website.
Im not really good at C#, took a class in school which was for a few months.
I guess i would need a way to search the field name and store it in a variable or something. then it would be something like:
Im not really good at C#, took a class in school which was for a few months.
I guess i would need a way to search the field name and store it in a variable or something. then it would be something like:
Code:
if((name == "Your Name") || (name == "Full Name"))
{
// Guess i would need to know how to add text to a field on the website also
FieldName.Text = "Joe";
}




