--- In [email protected], uma padmavathi <[EMAIL PROTECTED]> wrote: > Hi, > > I am facing the problem in refreshing the datagrid. In parent window clicking on the button it opens a child window, after selecting the items close the child window and selected values are stored in the session. In the parent window checking that seesion variable is not null then fill the datagird. But after refreshing the page only i am getting that datagrid to be filled. But I want the datagrid should be refreshed immediately closing the child window without refreshing the page because In the parent window I have so many controls. > >
Well as you have mentioned about Session variables, It has to be a Web application. You cant just refresh only datagrid in ur parent page because the control has to be passed to the parent page for processing which can not be done without refreshing it. You have already mentioned that you don't want to refresh ur parent page because it contains too many controls So there is another way, you can refresh only ur datagrid by placing it in a seprate page and placing that page in IFRAME (Inline Frame) But beware that IFRAME does not work in some browsers. So if u r targeting audience with IE only then its ok but I don't know about other browsers. You Should check FireFox Documentation for compatibilty because Firefox is the current hot browser in the market. For Information about IFRAME go to http://www.htmlhelp.com/reference/html40/special/iframe.html ------------ Ashish Thakwani Final Year Student B.E(Computer Engineering) Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/Microsofts_C_Sharp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
