Hi All,
I am trying to figure out a way to disable toolbars, scrollbars etc when the page loads, using JavaScript or ASP.NET.
i know i can use this
window.open('default.aspx', 'google', 'height=800px,width=480px,location=no,toolbar=0,directories=no,status=no,menubar=no,resizable=no,scrollbars=no');
but I dont want to open a new window but rather i want to apply these settings to the current window.
Regards, MNK...