TheGateKeeper
Regular Member
- Nov 9, 2011
- 226
- 58
In c# that is. Need to ask some questions and posting to websites using javascript validation.
Contact me via pm please.
Contact me via pm please.
I've got a lot of years of exp working with the WebBrowser control, but sorry mate not in c# - i'm more of a VB guy.
Have you tried the Webkit control yet? I've read somewhere that Javascript was easier
http://www.webkit.org/
http://sourceforge.net/projects/webkitdotnet/
sorry i couldn't help more
I've got a lot of years of exp working with the WebBrowser control, but sorry mate not in c# - i'm more of a VB guy.
it's the same class and same control provided by the framework, the syntax looks a little different but that's about it.
that being said i would advise anyone to avoid using the web browser control at all costs. it is slow, buggy, error prone, and bloated. you can't use multithreading with it and it will only accept one proxy at a time.
if it's just JavaScript validation you're worried about most times you can just ignore the client side validation when doing your submits. as long as you know the values you're submitting are correct they should be able to be passed to the server with no issues. the only time this can become a problem is if they're using some sort of specific JS generated values that are required for the submit. even in that case though you can usually calculate those values yourself in your C# code.
Do you know if that one proxy per time is process specific or operating system wide? For example lets say I made a bot that uses a web browser control with a proxy, and already had a different piece of software running that is also using a browser control and a proxy, are they both using their own proxies or is the proxy used determined on which webbrowser control set the proxy last?
Do you know if that one proxy per time is process specific or operating system wide? For example lets say I made a bot that uses a web browser control with a proxy, and already had a different piece of software running that is also using a browser control and a proxy, are they both using their own proxies or is the proxy used determined on which webbrowser control set the proxy last?
that being said i would advise anyone to avoid using the web browser control at all costs. it is slow, buggy, error prone, and bloated. you can't use multithreading with it and it will only accept one proxy at a time.