ajax for partial refresh of the page
-
I have a master page which consists of header, body and footer. The body has contentplaceholder for embedding the pages. in one of the page i have used ajax for partial refreshing, but the page is completely refresing instead of partial. what could be the problem. when i have tried with sample ajax implementation with one label and a button to display the time, it is functioning well.the complete page is not refreshing. what could be the problem in the above scenario?
-
I have a master page which consists of header, body and footer. The body has contentplaceholder for embedding the pages. in one of the page i have used ajax for partial refreshing, but the page is completely refresing instead of partial. what could be the problem. when i have tried with sample ajax implementation with one label and a button to display the time, it is functioning well.the complete page is not refreshing. what could be the problem in the above scenario?
In which place you placed your button? The button should be placed inside the UpdatePanel or your should add AsyncPostbackTrigger for the button.
Castle Rider
My: Website | Yahoo Group | Blog Spot
-
In which place you placed your button? The button should be placed inside the UpdatePanel or your should add AsyncPostbackTrigger for the button.
Castle Rider
My: Website | Yahoo Group | Blog Spot
In the actual context I have three listboxes, if i selected one item in the first listbox, the selectedindexhanged event is raised to get the neccessary details for the selected item in the first listbox and post the resulsts in the second listbox. the same scenario for the second listbox, if the item is selected in the second listbox, postback is done to get the details to fill in the third listbox. all the three controls are in the same which is shown as follows
listbox1 onselectedindexchanged1
listbox2 onselectedindexchanged2
listbox3