Twitter bootstrap 在Bootstrap mobile版本中无法单击Formview超链接

Twitter bootstrap 在Bootstrap mobile版本中无法单击Formview超链接,twitter-bootstrap,webforms,Twitter Bootstrap,Webforms,我有个问题。我在Bootstrap元素中有3个FormView,使它们具有响应性。它们在电脑分辨率上工作得很好,但一旦我把窗口缩小,它就开始不能正常工作了。我可以单击最后一个formview,但其他两个formview不再可单击。我不能点击“更新”、“删除”或“新建”按钮或任何东西,我不明白 <section class="col-md-12 content"> <div class="col-md-6"> <h1>Pakker<

我有个问题。我在Bootstrap元素中有3个FormView,使它们具有响应性。它们在电脑分辨率上工作得很好,但一旦我把窗口缩小,它就开始不能正常工作了。我可以单击最后一个formview,但其他两个formview不再可单击。我不能点击“更新”、“删除”或“新建”按钮或任何东西,我不明白

<section class="col-md-12 content">
    <div class="col-md-6">
        <h1>Pakker</h1>
        <asp:FormView ID="fv_packages" runat="server" DataSourceID="sds_packages" DataKeyNames="ID" AllowPaging="true">
            <EditItemTemplate>
                <div class="input-container">
                    <asp:TextBox Text='<%# Bind("Heading") %>' runat="server" ID="HeadingTextBox" CssClass="heading-box" /><br />
                    <asp:TextBox Text='<%# Bind("Text") %>' runat="server" ID="TextTextBox" CssClass="text-box" TextMode="MultiLine" /><br />
                </div>
                <asp:LinkButton runat="server" Text="Opdater" CommandName="Update" ID="UpdateButton" CausesValidation="True" />&nbsp;<asp:LinkButton runat="server" Text="Annuller" CommandName="Cancel" ID="UpdateCancelButton" CausesValidation="False" />
            </EditItemTemplate>
            <InsertItemTemplate>
                <div class="input-container">
                    <asp:TextBox Text='<%# Bind("Heading") %>' runat="server" ID="HeadingTextBox" CssClass="heading-box" /><br />
                    <asp:TextBox Text='<%# Bind("Text") %>' runat="server" ID="TextTextBox" CssClass="text-box" TextMode="MultiLine" /><br />
                </div>
                <asp:LinkButton runat="server" Text="Indsæt" CommandName="Insert" ID="InsertButton" CausesValidation="True" />&nbsp;<asp:LinkButton runat="server" Text="Annuller" CommandName="Cancel" ID="InsertCancelButton" CausesValidation="False" />
            </InsertItemTemplate>
            <ItemTemplate>
                <h3>
                    <asp:Label Text='<%# Bind("Heading") %>' runat="server" ID="HeadingLabel" /><br />
                </h3>
                <asp:Label Text='<%# Bind("Text") %>' runat="server" ID="TextLabel" /><br />
                <asp:LinkButton runat="server" Text="Rediger" CommandName="Edit" ID="EditButton" CausesValidation="False" />&nbsp;<asp:LinkButton runat="server" Text="Slet" CommandName="Delete" ID="DeleteButton" CausesValidation="False" />&nbsp;<asp:LinkButton runat="server" Text="Ny" CommandName="New" ID="NewButton" CausesValidation="False" />
            </ItemTemplate>
            <PagerTemplate>

                <asp:LinkButton ID="lb_previous" Text="Forrige" CommandName="Page" CommandArgument="Prev" runat="server" />
                |
                <asp:LinkButton ID="lb_next" Text="Næste" CommandName="Page" CommandArgument="Next" runat="server" />

            </PagerTemplate>
        </asp:FormView>
        <asp:SqlDataSource runat="server" ID="sds_packages" ConnectionString='<%$ ConnectionStrings:Student10332ConnectionString %>' DeleteCommand="DELETE FROM [GFP_Packages] WHERE [ID] = @ID" InsertCommand="INSERT INTO [GFP_Packages] ([Heading], [Text]) VALUES (@Heading, @Text)" SelectCommand="SELECT * FROM [GFP_Packages]" UpdateCommand="UPDATE [GFP_Packages] SET [Heading] = @Heading, [Text] = @Text WHERE [ID] = @ID">
            <DeleteParameters>
                <asp:Parameter Name="ID" Type="Int32"></asp:Parameter>
            </DeleteParameters>
            <InsertParameters>
                <asp:Parameter Name="Heading" Type="String"></asp:Parameter>
                <asp:Parameter Name="Text" Type="String"></asp:Parameter>
            </InsertParameters>
            <UpdateParameters>
                <asp:Parameter Name="Heading" Type="String"></asp:Parameter>
                <asp:Parameter Name="Text" Type="String"></asp:Parameter>
                <asp:Parameter Name="ID" Type="Int32"></asp:Parameter>
            </UpdateParameters>
        </asp:SqlDataSource>
    </div>
    <div class="col-md-6">
        <h1>Hvorfor os?</h1>
        <asp:FormView ID="fv_whyus" runat="server" DataSourceID="sds_whyus" DataKeyNames="ID" AllowPaging="true">
            <EditItemTemplate>
                <div class="input-container">
                    <asp:TextBox Text='<%# Bind("Heading") %>' runat="server" ID="HeadingTextBox" CssClass="heading-box" /><br />
                    <asp:TextBox Text='<%# Bind("Text") %>' runat="server" ID="TextTextBox" CssClass="text-box" TextMode="MultiLine" /><br />
                </div>
                <asp:LinkButton runat="server" Text="Opdater" CommandName="Update" ID="UpdateButton" CausesValidation="True" />&nbsp;<asp:LinkButton runat="server" Text="Annuller" CommandName="Cancel" ID="UpdateCancelButton" CausesValidation="False" />
            </EditItemTemplate>
            <InsertItemTemplate>
                <div class="input-container">
                    <asp:TextBox Text='<%# Bind("Heading") %>' runat="server" ID="HeadingTextBox" CssClass="heading-box" /><br />
                    <asp:TextBox Text='<%# Bind("Text") %>' runat="server" ID="TextTextBox" CssClass="text-box" TextMode="MultiLine" /><br />
                </div>
                <asp:LinkButton runat="server" Text="Indsæt" CommandName="Insert" ID="InsertButton" CausesValidation="True" />&nbsp;<asp:LinkButton runat="server" Text="Annuller" CommandName="Cancel" ID="InsertCancelButton" CausesValidation="False" />
            </InsertItemTemplate>
            <ItemTemplate>
                <h3>
                    <asp:Label Text='<%# Bind("Heading") %>' runat="server" ID="HeadingLabel" /><br />
                </h3>
                <asp:Label Text='<%# Bind("Text") %>' runat="server" ID="TextLabel" /><br />
                <asp:LinkButton runat="server" Text="Rediger" CommandName="Edit" ID="EditButton" CausesValidation="False" />&nbsp;<asp:LinkButton runat="server" Text="Slet" CommandName="Delete" ID="DeleteButton" CausesValidation="False" />&nbsp;<asp:LinkButton runat="server" Text="Ny" CommandName="New" ID="NewButton" CausesValidation="False" />
            </ItemTemplate>
            <PagerTemplate>

                <asp:LinkButton ID="lb_previous" Text="Forrige" CommandName="Page" CommandArgument="Prev" runat="server" />
                |
                <asp:LinkButton ID="lb_next" Text="Næste" CommandName="Page" CommandArgument="Next" runat="server" />

            </PagerTemplate>
        </asp:FormView>
        <asp:SqlDataSource runat="server" ID="sds_whyus" ConnectionString='<%$ ConnectionStrings:Student10332ConnectionString %>' DeleteCommand="DELETE FROM [GFP_WhyUs] WHERE [ID] = @ID" InsertCommand="INSERT INTO [GFP_WhyUs] ([Heading], [Text]) VALUES (@Heading, @Text)" SelectCommand="SELECT * FROM [GFP_WhyUs]" UpdateCommand="UPDATE [GFP_WhyUs] SET [Heading] = @Heading, [Text] = @Text WHERE [ID] = @ID">
            <DeleteParameters>
                <asp:Parameter Name="ID" Type="Int32"></asp:Parameter>
            </DeleteParameters>
            <InsertParameters>
                <asp:Parameter Name="Heading" Type="String"></asp:Parameter>
                <asp:Parameter Name="Text" Type="String"></asp:Parameter>
            </InsertParameters>
            <UpdateParameters>
                <asp:Parameter Name="Heading" Type="String"></asp:Parameter>
                <asp:Parameter Name="Text" Type="String"></asp:Parameter>
                <asp:Parameter Name="ID" Type="Int32"></asp:Parameter>
            </UpdateParameters>
        </asp:SqlDataSource>
    </div>
    <div class="col-md-6">
        <h1>Om os</h1>
        <asp:FormView ID="fv_about" runat="server" DataSourceID="sds_about" DataKeyNames="ID" AllowPaging="true">
            <EditItemTemplate>
                <div class="input-container">
                    <asp:TextBox Text='<%# Bind("Heading") %>' runat="server" ID="HeadingTextBox" CssClass="heading-box" /><br />
                    <asp:TextBox Text='<%# Bind("Text") %>' runat="server" ID="TextTextBox" CssClass="text-box" TextMode="MultiLine" /><br />
                </div>
                <asp:LinkButton runat="server" Text="Opdater" CommandName="Update" ID="UpdateButton" CausesValidation="True" />&nbsp;<asp:LinkButton runat="server" Text="Annuller" CommandName="Cancel" ID="UpdateCancelButton" CausesValidation="False" />
            </EditItemTemplate>
            <InsertItemTemplate>
                <div class="input-container">
                    <asp:TextBox Text='<%# Bind("Heading") %>' runat="server" ID="HeadingTextBox" CssClass="heading-box" /><br />
                    <asp:TextBox Text='<%# Bind("Text") %>' runat="server" ID="TextTextBox" CssClass="text-box" TextMode="MultiLine" /><br />
                </div>
                <asp:LinkButton runat="server" Text="Indsæt" CommandName="Insert" ID="InsertButton" CausesValidation="True" />&nbsp;<asp:LinkButton runat="server" Text="Annuller" CommandName="Cancel" ID="InsertCancelButton" CausesValidation="False" />
            </InsertItemTemplate>
            <ItemTemplate>
                <h3>
                    <asp:Label Text='<%# Bind("Heading") %>' runat="server" ID="HeadingLabel" /><br />
                </h3>
                <asp:Label Text='<%# Bind("Text") %>' runat="server" ID="TextLabel" /><br />
                <asp:LinkButton runat="server" Text="Rediger" CommandName="Edit" ID="EditButton" CausesValidation="False" />&nbsp;<asp:LinkButton runat="server" Text="Slet" CommandName="Delete" ID="DeleteButton" CausesValidation="False" />&nbsp;<asp:LinkButton runat="server" Text="Ny" CommandName="New" ID="NewButton" CausesValidation="False" />
            </ItemTemplate>
            <PagerTemplate>

                <asp:LinkButton ID="lb_previous" Text="Forrige" CommandName="Page" CommandArgument="Prev" runat="server" />
                |
                <asp:LinkButton ID="lb_next" Text="Næste" CommandName="Page" CommandArgument="Next" runat="server" />

            </PagerTemplate>
        </asp:FormView>
        <asp:SqlDataSource runat="server" ID="sds_about" ConnectionString='<%$ ConnectionStrings:Student10332ConnectionString %>' DeleteCommand="DELETE FROM [GFP_About] WHERE [ID] = @ID" InsertCommand="INSERT INTO [GFP_About] ([Heading], [Text]) VALUES (@Heading, @Text)" SelectCommand="SELECT * FROM [GFP_About]" UpdateCommand="UPDATE [GFP_About] SET [Heading] = @Heading, [Text] = @Text WHERE [ID] = @ID">
            <DeleteParameters>
                <asp:Parameter Name="ID" Type="Int32"></asp:Parameter>
            </DeleteParameters>
            <InsertParameters>
                <asp:Parameter Name="Heading" Type="String"></asp:Parameter>
                <asp:Parameter Name="Text" Type="String"></asp:Parameter>
            </InsertParameters>
            <UpdateParameters>
                <asp:Parameter Name="Heading" Type="String"></asp:Parameter>
                <asp:Parameter Name="Text" Type="String"></asp:Parameter>
                <asp:Parameter Name="ID" Type="Int32"></asp:Parameter>
            </UpdateParameters>
        </asp:SqlDataSource>
    </div>
</section>

帕克






| hvoros?





| Om os





|

提前感谢。

您使用过哪些浏览器/版本?这种行为在不同的浏览器下会改变吗?您好,我在谷歌Chrome、Internet Explorer和Mozilla Firefox中试过,它在每个浏览器中都会做同样的事情。我测试的三个浏览器都是最新版本。我想你需要把
col-md-6
放在
行中?我不知道你是什么意思?