Click here to Skip to main content
15,885,757 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I Want To Create An Application That Logs Into A Website And Does Surveys. How Would I Go About Writing The Application That Does Such A thing ?
Posted
Comments
[no name] 25-Jun-14 19:18pm    
Learn some programming
Create some program requirements
Do some research
Write some code
Test, debug and fix your code.
PIEBALDconsult 25-Jun-14 20:17pm    
You mean some sort of 'bot? I doubt you'll get much assistance here.

All you do with any Web site or application is sending some HTTP requests and receiving HTTP responses. This is how you get information, post data, authenticate, anything.

You can use the class System.Net.HttpWebRequest:
http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx[^].

Make sure you don't do anything illegal, abusive or ethically questionable (like spamming), which is always a concern if you try to represent some user through your application — please see the comment by PIEBALDconsult about a "bot".

—SA
 
Share this answer
 
v2
try with web testing tools[^]
Most of them support multiple scripting languages and you can try few of them.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900