Page refresh inASP.NET2.0+c#
ASP.NET
5
Posts
4
Posters
0
Views
1
Watching
-
GO for F5.
Regards, Satips.:rose:
-
GO for F5.
Regards, Satips.:rose:
-
Hi You can implement the refresh process with the help of a Button. Check this code for counting how many times the page is refreshed static int pageRefresh; protected void Page_Load(object sender, EventArgs e) { lblRefresh.Text = "The page is refreshed '"+pageRefresh+"' times"; } protected void btnRefresh_click(object sender, EventArgs e) { pageRefresh += 1; Page_Load(sender,e); }
Cheers Chandu