Refresh Button Code
-
Hello All, I have aspx page having 2 frames LeftFrame & RightFrame. I Have a button called "Refresh" at leftFramepage. Once clicking on Refresh Button Right Frame will be refreshed. my Page is contains several textboxes/DropdownList Boxes on Right Frame page. I need to code or Javascript code for Page Refresh in case of frames any one help me, appriciated regards GV Ramana
-
Hello All, I have aspx page having 2 frames LeftFrame & RightFrame. I Have a button called "Refresh" at leftFramepage. Once clicking on Refresh Button Right Frame will be refreshed. my Page is contains several textboxes/DropdownList Boxes on Right Frame page. I need to code or Javascript code for Page Refresh in case of frames any one help me, appriciated regards GV Ramana
take html button or simple anchor tag set target attribute as the id of the right frame, so when you slick on link at left frame it will reload the page look at following lines <>refresh<> it will help you I hope:) Any systematic work reflects its significance for a long time, Though I m not totally against "The Prototyping".So let's discuss in depth... -- modified at 11:02 Tuesday 27th December, 2005
-
take html button or simple anchor tag set target attribute as the id of the right frame, so when you slick on link at left frame it will reload the page look at following lines <>refresh<> it will help you I hope:) Any systematic work reflects its significance for a long time, Though I m not totally against "The Prototyping".So let's discuss in depth... -- modified at 11:02 Tuesday 27th December, 2005
that is not. Eventhough target is rightframe only. my requirement is clicking on left frame need refresh of right frame regards GV Ramana
-
that is not. Eventhough target is rightframe only. my requirement is clicking on left frame need refresh of right frame regards GV Ramana
listen, u have 2 frames, a button (perhaps you have web server control) on page at left frame, and you want to refresh page at right frame when you click the button. Right?? if yes, if not necessary use anchor tag and make its style seeming button plz code to anchor like this <[>Refresh<](file at right frame)> there should be other solutions, but i hv implemented it for my requirement just yesterday.:) Any systematic work reflects its significance for a long time, Though I m not totally against "The Prototyping".So let's discuss in depth...
-
listen, u have 2 frames, a button (perhaps you have web server control) on page at left frame, and you want to refresh page at right frame when you click the button. Right?? if yes, if not necessary use anchor tag and make its style seeming button plz code to anchor like this <[>Refresh<](file at right frame)> there should be other solutions, but i hv implemented it for my requirement just yesterday.:) Any systematic work reflects its significance for a long time, Though I m not totally against "The Prototyping".So let's discuss in depth...
Hello thx for response, But just now i found the short way i.e.. :-D regards GV Ramana -- modified at 12:36 Tuesday 27th December, 2005
-
Hello thx for response, But just now i found the short way i.e.. :-D regards GV Ramana -- modified at 12:36 Tuesday 27th December, 2005
why not have the IFrame link to another aspx page Then you just need a reponse redirect to execute on the frame page If you need to change data just pass a querstring with it Nick I'm not an expert yet, but I play one at work. Yeah and here too. -- modified at 15:09 Tuesday 27th December, 2005
-
why not have the IFrame link to another aspx page Then you just need a reponse redirect to execute on the frame page If you need to change data just pass a querstring with it Nick I'm not an expert yet, but I play one at work. Yeah and here too. -- modified at 15:09 Tuesday 27th December, 2005
Hello Ista, i added Refresh Button code in my Left Frame Page like this... But I need to maintain the all control values even after refresh. Is there any way to maintain all controls view state ?? Help me regards GV Ramana
-
Hello Ista, i added Refresh Button code in my Left Frame Page like this... But I need to maintain the all control values even after refresh. Is there any way to maintain all controls view state ?? Help me regards GV Ramana
instead of reload you will want to force a postback. There maybe be otherways but this seems the most sound to me. Check this link: http://weblogs.asp.net/mnolton/archive/2003/06/04/8260.aspx[^] I'm not an expert yet, but I play one at work. Yeah and here too.