I was wondering if any of you have the vb.net Multi session httpwrapper, Like alex's LogicalHttp :O
Printable View
I was wondering if any of you have the vb.net Multi session httpwrapper, Like alex's LogicalHttp :O
Well you could just tell it to access the one on Form2 or whatever...
Like lets say that you made a bot... Form2 has the wrapper on it...
In form1 you have a basic login...
Load code:
Button Code:Code:Form2.Hide
Form1.Show
In form2 you have a "Multi Bot"...Code:Form2.Wrapper.GetWrapper("Http://www.gaiaonline.com")
Form2.Wrapper.PostWrapper( Blah Blah Blah [Don't wan't to recode it here xD] )
If (InStr(Strhtml, "?Login_Success=1") <> 0) Then
Form1.Hide
Form2.Show
MsgBox("Logged in successfully...")
End If
I remember testing this... Don't remember if it worked... xD
Btw, coded this all right here so I wouldn't be surprised if there were errors in the login code...
HTTPWrappers wrapper = new HTTPWrappers()
that or upgrade the LogicalHTTP into vb.net
@ Eternal - Thats just calling it from somewhere else, i ment multiple sessions.
@Chad-Ill try that :) Thanks.