日历控制表现不佳

时间:2015-10-29 18:36:56

标签: c# asp.net calendar-control

我的用户控件包含日历控件有问题。 它在visual studio 2015的设计视图中看起来不错: this is how it looks in design view

但是,在浏览器中,任何浏览器,它看起来像这样: this is how it looks in the browser

我试图将宽度设置为330px,无论我能想到什么,但似乎总是以某种方式获得宽度1084!

有人有过类似的问题吗?问题出在哪儿? 有希望吗?

以下是用户控件的代码:

    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TimeKalender.ascx.cs" Inherits="Blodbanken.TimeKalender" %>
<link rel="Stylesheet" type="text/css" href="StyleSheet1.css" id="style" runat="server" visible="false" />
<div class="kalender" style="width:330px;">
<asp:Calendar ID="Calendar1"  runat="server" BackColor="White" BorderColor="Black" BorderStyle="Solid" CellSpacing="1" Font-Names="Verdana" Font-Size="9pt" ForeColor="Black" Height="250px" NextPrevFormat="ShortMonth" Width="100%">
    <DayHeaderStyle Font-Bold="True" Font-Size="8pt" ForeColor="#333333" Height="8pt" />
    <DayStyle BackColor="#CCCCCC" />
    <NextPrevStyle Font-Bold="True" Font-Size="8pt" ForeColor="White" />
    <OtherMonthDayStyle ForeColor="#999999" />
    <SelectedDayStyle BackColor="#E60000" ForeColor="White" />
    <TitleStyle BackColor="Red" BorderStyle="None" Font-Bold="True" Font-Size="12pt" ForeColor="White" Height="12pt" />
    <TodayDayStyle BackColor="#999999" ForeColor="White" />
</asp:Calendar>
</div>
    <asp:Label ID="lblLedigeTimer" runat="server" Text="Available appointments:" Font-Bold="True"></asp:Label>
    <br />

    <asp:CheckBoxList ID="CheckBoxList1" runat="server">
        <asp:ListItem>08:00 </asp:ListItem>
        <asp:ListItem>09:00 </asp:ListItem>
        <asp:ListItem>10:00 </asp:ListItem>
        <asp:ListItem>11:00 </asp:ListItem>
        <asp:ListItem>12:00 </asp:ListItem>
        <asp:ListItem>13:00 </asp:ListItem>
        <asp:ListItem>14:00 </asp:ListItem>
        <asp:ListItem>15:00 </asp:ListItem>
    </asp:CheckBoxList>

<asp:Button ID="Button1" runat="server" Text="Book it!" Width="119px" />

2 个答案:

答案 0 :(得分:0)

我不确定是不是这样,因为你声明你将宽度设置为330px但是在示例HTML中你将宽度设置为100%

<asp:Calendar ... NextPrevFormat="ShortMonth" Width="100%">

取出宽度定义并让大小由父div定义

答案 1 :(得分:0)

神秘解决了!

事实证明,asp:calendar-tag会转换成一堆og table-tags。并且深深嵌套在一些标签中,这些标签受到用于导航菜单的css的影响。 enter image description here

感谢您的投入!