can we access web browser functions from Asp.Net?

liunx

Guest
hai
this my first mail........
i a beginer in ASP.net ......

can we access functions like back, forward , or even disable them form Asp.net itself ........

one more thing is there any possible way i can close the whole browser it self using Asp.net.....

or if it can be done only using Javescript or vbscript or any way just tell me all i want to do is disable the back button on the my browser or just propt a message..... when user is making use of it....


please respond

Austin Neelankavilno, ASP.Net is a server-side language. The page is fully rendered and handed off to the Web server in html before it even makes it to your browser. You can only manipulate the client with client-side technologies like jScript and javascript.If you want to be able to use some client side feautres, but dynamically modify how you use them you are just going to dynamically write the javascript into the html with asp.net
 
Back
Top