Note that there are some explanatory texts on larger screens.

plurals
  1. POHow can I remove this scrollbar?
    primarykey
    data
    text
    <p>I am working on visual studio 2010. The code was running perfectly but, suddenly I don't know why a horizontal scroll bar appeared. Does anyone have any idea how to remove the scroll bar. Below is my code. Thanks for your help</p> <pre><code>&lt;%@ Page Title="Reports" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Reports.aspx.cs" Inherits="F.Reports" %&gt; &lt;%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %&gt; &lt;asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server"&gt; &lt;title&gt;&lt;/title&gt; &lt;link type="text/css" rel="Stylesheet" href="Styles/jquery-ui-1.8.16.custom.css" /&gt; &lt;script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.4.4.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(function () { $(".dateFrom").datepicker({ dateFormat: 'dd/mm/yy' }); $(".dateTo").datepicker({ dateFormat: 'dd/mm/yy' }); }); &lt;/script&gt; &lt;/asp:Content&gt; &lt;asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"&gt; &lt;h2&gt; Reports&lt;/h2&gt; &lt;div id="Div4" style="position: absolute; left: 310px; margin-top: 40px;"&gt; &lt;h3&gt; From Date &lt;/h3&gt; &lt;asp:TextBox ID="DateField" class="dateFrom" runat="server" autocomplete="off"&gt;&lt;/asp:TextBox&gt; &lt;/div&gt; &lt;div id="Div3" style="position: absolute; left: 500px; margin-top: 40px;"&gt; &lt;h3&gt; To Date &lt;/h3&gt; &lt;asp:TextBox ID="DateField2" class="dateTo" runat="server" autocomplete="off"&gt; &lt;/asp:TextBox&gt; &lt;/div&gt; &lt;div id="Div1" style="position: absolute; left: 0px; margin-top: 40px; right: 295px;"&gt; &lt;h3&gt; Choose Report&lt;/h3&gt; &lt;asp:DropDownList ID="ReportDropDownList" runat="server"&gt; &lt;asp:ListItem Value="0"&gt;Report1&lt;/asp:ListItem&gt; &lt;asp:ListItem Value="1"&gt;Report2&lt;/asp:ListItem&gt; &lt;asp:ListItem Value="2"&gt;Report3 &lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;/div&gt; &lt;div id="Div2" style="position: relative; left: 690px; margin-top: 55px;"&gt; &lt;asp:Button ID="GenerateReportButton" runat="server" Text="OK" OnClick="GenerateReportButton_Click" /&gt; &lt;/div&gt; &lt;/asp:Content&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload