disable back buttons
C#
3
Posts
3
Posters
0
Views
1
Watching
-
i have a application in c# that uses web browser control How can i disable Back buttons and forward button of my application if there is no page to be navigated. ifa nayone can help please. thanks ramya
You cannot. This is a function of the browser. ColinMackay.net Scottish Developers are looking for speakers for user group sessions over the next few months. Do you want to know more?
-
i have a application in c# that uses web browser control How can i disable Back buttons and forward button of my application if there is no page to be navigated. ifa nayone can help please. thanks ramya
Hi try following code, write it in OnInit method this.RegisterClientScriptBlock("DesableButton","window.history.forward(1); "); :)