how to scroll IFrame without placing the mouse pointer on IE scrollbar?

Posted by David on Stack Overflow See other posts from Stack Overflow or by David
Published on 2012-09-12T03:34:14Z Indexed on 2012/09/12 3:38 UTC
Read the original article Hit count: 63

Filed under:
|

I have this asp.net page as below.

<body>
    <form id="form1" runat="server">
    <div class="page" >
    <iframe id="iFrame1" style="width:100%" runat="server" 
    height="1100"  scrolling="yes"
    src="login.aspx"
     frameborder="0" align="left">
    </iframe>
    </div>
    </form>
</body>

To scroll the iframe,I have to put the mouse pointer over the IE scroll bar. I just want to place the mouse pointer over the iframe and scroll the page.Please advice. thanks in advance.

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET