G
Guest
I need to be able to create a class in C# that will allow me to navigate to a
public website "www.arin.net" (American Registry for Internet Numbers). The
web page has a single text box where I can input an IP address. Then I have
to press a button called "Search WHOIS". Then in the next page, I will get
the name and address of the entity that owns that IP address. How can I
simulate the actions of entering a value in a text box and pressing the
button to do the search? I do not have access to the underlying application
for "www.arin.net", so I could not use a code behind C# program to directly
assign a value to the ".Text" property of the text box, and then capture a
"button_click" event to do an ASP page postback. So how can I perform a
similar action on a public web page, but using C#? Should I use one of the
new C# classes like "WebRequestMethods.Http.Post"? I am a junior level
developer, so if you can give me as much coding detail as possible, I would
be very grateful. Thank you.
public website "www.arin.net" (American Registry for Internet Numbers). The
web page has a single text box where I can input an IP address. Then I have
to press a button called "Search WHOIS". Then in the next page, I will get
the name and address of the entity that owns that IP address. How can I
simulate the actions of entering a value in a text box and pressing the
button to do the search? I do not have access to the underlying application
for "www.arin.net", so I could not use a code behind C# program to directly
assign a value to the ".Text" property of the text box, and then capture a
"button_click" event to do an ASP page postback. So how can I perform a
similar action on a public web page, but using C#? Should I use one of the
new C# classes like "WebRequestMethods.Http.Post"? I am a junior level
developer, so if you can give me as much coding detail as possible, I would
be very grateful. Thank you.