How to refresh asp.net page without getting blank
-
Hi Can anyone help me in refreshing asp.net page, which contains grid without page being blank. Grid is connected to database and fetches data from database at load time. I have tried doing it but my page becomes blank at the time of refreshing. is there any way to do this using ajax? thanx n bye Ratnadeep Mumbai
-
Hi Can anyone help me in refreshing asp.net page, which contains grid without page being blank. Grid is connected to database and fetches data from database at load time. I have tried doing it but my page becomes blank at the time of refreshing. is there any way to do this using ajax? thanx n bye Ratnadeep Mumbai
What do you mean exactly by the page becomes blank? How are you refreshing? is it by clicking on a button in the form or by clicking the "reload" of the browser?
-- If this is a post that has been helpful to you, please vote for it. Thank you! "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." --Rich Cook
-
What do you mean exactly by the page becomes blank? How are you refreshing? is it by clicking on a button in the form or by clicking the "reload" of the browser?
-- If this is a post that has been helpful to you, please vote for it. Thank you! "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." --Rich Cook
hi Talal Sultan i m reloading the page using meta tags.
-
hi Talal Sultan i m reloading the page using meta tags.
Ok, so I "suppose" it is the same as clicking on the "load" button of the browser. Now, does the data appear the first time you load the page and disappear when you reload? If so, could you provide some code about how you are loading the data?
-- If this is a post that has been helpful to you, please vote for it. Thank you! "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." --Rich Cook
-
Hi Can anyone help me in refreshing asp.net page, which contains grid without page being blank. Grid is connected to database and fetches data from database at load time. I have tried doing it but my page becomes blank at the time of refreshing. is there any way to do this using ajax? thanx n bye Ratnadeep Mumbai
ratnadeepraul wrote:
my page becomes blank at the time of refreshing. is there any way to do this using ajax?
At the time of refresh or after loading ? Page will be blank for a second while it fetches data. To avoid complete page refresh, you can put your grid inside UpdatPanel (Included in AJAX toolkit).
-
Hi Can anyone help me in refreshing asp.net page, which contains grid without page being blank. Grid is connected to database and fetches data from database at load time. I have tried doing it but my page becomes blank at the time of refreshing. is there any way to do this using ajax? thanx n bye Ratnadeep Mumbai
-
you can set "SmartNavigation=True" in the page directive of your asp.net page <%@ Page Language="C#" AutoEventWireup="true" "SmartNavigation=True" CodeFile="frmCodeSearch.aspx.cs" Inherits="frmCodeSearch" %>
winnie
codelinks wrote:
you can set "SmartNavigation=True" in the page directive of your asp.net page
Specifically for IE. Is it ?
-
codelinks wrote:
you can set "SmartNavigation=True" in the page directive of your asp.net page
Specifically for IE. Is it ?
-
you can set "SmartNavigation=True" in the page directive of your asp.net page <%@ Page Language="C#" AutoEventWireup="true" "SmartNavigation=True" CodeFile="frmCodeSearch.aspx.cs" Inherits="frmCodeSearch" %>
winnie
hi "SmartNavigation=True" isnt working for me, it doesnt allow my page to refresh. thanx for suggestions
-
ratnadeepraul wrote:
my page becomes blank at the time of refreshing. is there any way to do this using ajax?
At the time of refresh or after loading ? Page will be blank for a second while it fetches data. To avoid complete page refresh, you can put your grid inside UpdatPanel (Included in AJAX toolkit).
Hi Navaneet, can u give me ne source from where i can download ajax toolkit. Is it available for free? Bye n thanx
-
hi "SmartNavigation=True" isnt working for me, it doesnt allow my page to refresh. thanx for suggestions
-
did u remove the double quotes just give SmartNavigation=true in the page directive of your asp.net page
winnie
ya, i saw it by removing double quotes also. But still its not working.