question:
Is it possible to click the button with a computer program? So I want to write a program that automatically clicks the button. How is it possible?
( I prefer .NET and C# language. )
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shivanand ArurPosted Oct 26, 2012, 5:11 AM
For example -
protected void btnSubmit_Click(object sender, Eventargs e)
{
Response.Write("The User Clicked the Submit Button");
}
Only when the user clicks the button, the text will be shown on the page in the browser....
Hope this helps u out!!!
Please mark the answer as accepted if it helped!!!
Thank you