Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I have IFrame inside Ajax tab container.I want to remove both horizontal and vertical scroll bar . I have already used
scrolling="no"
inside iFRame.But still scroll bars are coming. How to remove both Horizontal and vertical scroll bar. please help me anybody.


ASP.NET
<Ajx:ToolkitScriptManager  runat="server" EnablePartialRendering="true" ID="ScriptManager1" />

   <Ajx:TabContainer  runat="server" Width="100%" ID="tcTabs" Visible="true" CssClass="Tab"
                        BorderStyle="None" ScrollBars="None">


 <Ajx:TabPanel  runat="server" ID="tpInvestment" HeaderText="Investment" Width="50px" BorderStyle="None" ScrollBars="None">

       <contenttemplate>
  <iframe id="ifInvestment" src="PlanningFixedAssets.aspx?PageName=PDOVendor"  runat="server"
      width="100%" height="650px" style="border-style: none;" scrolling="no"></iframe>
                            </contenttemplate>
Posted
Updated 13-Apr-14 4:48am
v2

1 solution

add overflow:hidden in the iframe style
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900