G
Guest
Hello,
I am tasked to write an application for a travel agency, that should be able to get a price for airline tickets from airline's website. Generally, airlines don't provide any web services for this, so I am sort of forced to simulate all the clicks/list boxes selection that a regular user would make. Most of those buttons have a java script associated with them, so as soon as a button's clicked -- java script runs.
So, here is the question: what's the best way to implement a call to a javascript? Would I use ASP.NET platform, since it has these HttpRequest / Response objects? What would I put in my HttpRequest?
For instance, if a web page http://www.mysite.com/page.cgi has a java script that looks something like this:
function submit_SomeForm()
{
document.SomeForm.A.value = "A"
document.SomeForm.B.value = "B"
document.SomeForm.C.value = "C"
document.SomeForm.submit()
}
What would be a code snippet that would setup SomeForm document with all the values and submit it to the site?
Also, what tools would I use to see what the http string that goes from my browser to the site is like?
I understand that I am sort of asking for a lot but I appreciate any help -- I am a rookie at this and it's tough to ask the right question
I appreciate any help.
Sincerely,
YR
I am tasked to write an application for a travel agency, that should be able to get a price for airline tickets from airline's website. Generally, airlines don't provide any web services for this, so I am sort of forced to simulate all the clicks/list boxes selection that a regular user would make. Most of those buttons have a java script associated with them, so as soon as a button's clicked -- java script runs.
So, here is the question: what's the best way to implement a call to a javascript? Would I use ASP.NET platform, since it has these HttpRequest / Response objects? What would I put in my HttpRequest?
For instance, if a web page http://www.mysite.com/page.cgi has a java script that looks something like this:
function submit_SomeForm()
{
document.SomeForm.A.value = "A"
document.SomeForm.B.value = "B"
document.SomeForm.C.value = "C"
document.SomeForm.submit()
}
What would be a code snippet that would setup SomeForm document with all the values and submit it to the site?
Also, what tools would I use to see what the http string that goes from my browser to the site is like?
I understand that I am sort of asking for a lot but I appreciate any help -- I am a rookie at this and it's tough to ask the right question
I appreciate any help.
Sincerely,
YR