asp .net web design
-
hi.. I have created a rdlc in asp .net web application.When project runs,by clicking a button,report appears.But there is a problem.When only the maximise button is clicked,that window will become maximise..I need that when page is loaded,it became in maximised form.Pls help me..There is not any property such as" window state" for aspx page.Pls help me :((
-
hi.. I have created a rdlc in asp .net web application.When project runs,by clicking a button,report appears.But there is a problem.When only the maximise button is clicked,that window will become maximise..I need that when page is loaded,it became in maximised form.Pls help me..There is not any property such as" window state" for aspx page.Pls help me :((
You can use JavaScript to set it. You can do it like this:
<script language="javascript">
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
</script> -
You can use JavaScript to set it. You can do it like this:
<script language="javascript">
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
</script>Thanks a lot..It works... :-O