Automating a website using Asp.net
-
I am planning to automate a website (which is used to file tax). I think it is better to implement using asp.net. I am new to website automation. My questions are as follows, 1. How to make user to fill details in my asp page (User will enter details in my local server , and I will send those details to main website) 2. How to make user to enter captcha by showing him only image from main website in local page and later I will send that value to main website? 3. How to control child window from main window and vise versa using asp.net ?.
-
I am planning to automate a website (which is used to file tax). I think it is better to implement using asp.net. I am new to website automation. My questions are as follows, 1. How to make user to fill details in my asp page (User will enter details in my local server , and I will send those details to main website) 2. How to make user to enter captcha by showing him only image from main website in local page and later I will send that value to main website? 3. How to control child window from main window and vise versa using asp.net ?.
srikrishnathanthri wrote:
How to make user to fill details in my asp page (User will enter details in my local server , and I will send those details to main website)
For this when user fills the details,you can make an HTTP POST to your main website.In this ,you can parse the parameters in your main website via an http post from your button click event handler when one clicks on the button after entering the details. Here is a link c# - HTTP request with post - Stack Overflow[^]