my first ajax:
i have an asp.net form that contains a div with a textbox for search terms and a button labeled search for flights. the user clicks search and the results are written to a div, one result per line. the results show information about an aircraft flight. the result text is clickable - for example "conflict details" when clicked displays details about that flight's conflicts to another div.
so i don't know how many results will be returned by the search. each line should have, behind the scenes, a flight id number from the database associated with the result line. the clickable result text uses this id to retrieve the details about the flight to another div.
i want to use ajax to:
return the search results to the results div.
retrieve the flight details using the flight id number and write these to another div.
it looks like this
search for flights <input textbox here> button to click for search
resultsdiv
flight1 name conflict details (clickable)
/resultsdiv
detailsdiv
conflict details for flight1
/detailsdiv
i want to use ajax for the search and for the conflict details. if possible i want to use an update panel or other .net ajax control.
i have never used ajax before but know what it is.
thanks alot.
Start Free Trial