-
double request
hi gurus
I have a project that I ned help with, I hope someone can pont me to the right direction.
I have a web page that I need to log in, the first page is not a problem I can log in as it only has the company name to enter, but from here is where I have problems, as when the first page is done, I am directed to a second page with two fields that has to be filled, filename and author, then depending on the action you have to click on in button,out,button delay button, here is where I need help, how do I fil the second page fields and how to chose the right button depending the action to take.
Thanks gurus
-
Re: double request
Can you be more explicit with your query, What does this have to do with VB.net, Are you trying to code a webpage.. If so this should be in ASP.net?
-
Re: double request
J. Thanks for the reply and sorry for the confusion
1) there is a web page that I need to access but instead of doing it manually everytime I would like to write an application in which the parametersare pass and the first page logged in.
2) once I pass the first page there is another page that as for two more parameter and depending on the action I wouldlike to take, I click on IN(button) OUT(buttom) or DELAY(buttom)I would like to do all this frommy application. how do I send the right parameters and the click event depending on the action.
Thanks in advance
-
Re: double request
-
Re: double request
Examine the page source. Does it use GET or POST method to accept data from user?
Accordingly build your querystring (from code) and submit. If page uses GET then the plain querystring would be acceptable. In case of POST, you would need to convert the querystring to byte array before submitting.
-
Re: double request
P.
Is POST.
can you point me to the right direction on where can I find more information on how to deal with project.
Thanks a bunch.
-
Re: double request
bitearray = StrConv(s, vbFromUnicode
Something like that..
-
Re: double request
-
Re: double request
I recently made an app I'm about to submit in this forums CodeBank that does something similar to what you are trying to do. It logins to a website and gets data from some protected website areas. Unfortunately I'm not at home right now, so can't post it immediately. I'll post back as soon as I reach home.
-
Re: double request
OK. I posted in the Utility Bank.
Please have a look at this:
http://www.vbforums.com/showthread.php?t=618818