What you want to see on DotNetFunda.com ?
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 19530 |  Welcome, Guest!   Register  Login
 Home > Forums > ASP.NET > Hiding Status Bar in asp.net ...
Shoyebaziz123

Hiding Status Bar in asp.net

Replies: 1 | Posted by: Shoyebaziz123 on 3/31/2010 | Category: ASP.NET Forums | Views: 1738 | Status: [Member]  


Hi All,
In my application i am using Master page ...now how to write a code to show all pages in my application with full screen, and there is no scroll bar, status bar,adddress bar etc ............ as we do in desktop application..

Thanks in advance


Reply | Reply with attachment | Alert Moderator

 Responses below this adGet hundreds of .NET Tips and Tricks videos

 Replies

Sagarp
Sagarp  
Posted on: 3/31/2010 4:53:38 AM
Level: Bronze | Status: [Member]

window.document.statusbar.enable = false;

window.document.titlebar.enable = false;
window.document.addressbar.enable = false;

<html>
<title>hey</title>
<script type="text/javascript">
function changetitle()
{
alert(window.document.title);
window.document.title = "heyhey";
window.document.statusbar.enable = false;
alert(window.document.title);
}
</script>
<body onload="changetitle()">
</body>
</html>


Thanks
SagarP
http://www.emanonsolutions.net
http://emanonsolutions.blogspot.com/

Shoyebaziz123, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Reply - Please login to reply


Click here to login & reply

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/23/2013 1:56:12 PM