asp面板默认按钮不起作用

时间:2010-09-17 09:56:35

标签: asp.net panel

我在我的项目中使用了ajax colllapsible panel extender。所以在其中一个价格范围功能面板中,我有2个文本框和一个asp按钮,可以处理价格范围的功能。好吧,我正在尝试将按钮设置为asp面板内的默认按钮,但它不起作用。我在firefox,IE&铬也。它只是不执行任何操作并重新加载页面。

下面我要添加asp代码

<asp:Panel ID="PricePanel" runat="server" CssClass="ui-widget-header ui-corner-all"
                                Style="padding: 0.1em 0.3em; text-align: left;">
                                <asp:Image ID="imgPrice" runat="server" />
                                <asp:Label ID="AllPrices" runat="server" Text="Price Range"></asp:Label>
                            </asp:Panel>
                            <asp:Panel ID="PricePanelContent" runat="server" CssClass="collapsePanel" DefaultButton="btnPrice">
                                <div class="PriceRange">
                                    <asp:Label ID="lblPriceFrom" runat="server" Text="Rs" Width="20px"></asp:Label><asp:TextBox
                                        Width="60px" ID="txtPriceFrom" runat="server"></asp:TextBox>
                                    <asp:Label ID="lblPriceTo" runat="server" Text="To Rs " Width="42px"></asp:Label><asp:TextBox
                                        ID="txtPriceTo" Width="60px" runat="server" AutoPostBack="True" Wrap="True"></asp:TextBox>
                                    <asp:Button ID="btnPrice" runat="server" Text="Go" OnClick="btnPrice_Click" />
                                </div>
                            </asp:Panel>
                            <asp:CollapsiblePanelExtender TargetControlID="PricePanelContent" ImageControlID="imgPrice"
                                ExpandedImage="~/images/open.png" CollapsedImage="~/images/close.png" ID="CollapsiblePrice"
                                ExpandControlID="PricePanel" CollapseControlID="PricePanel" CollapsedText="All Price"
                                TextLabelID="AllPrices" ExpandedText="" Collapsed="true" runat="server" SuppressPostBack="true">
                            </asp:CollapsiblePanelExtender>

如果有人可以帮助我。

谢谢&amp;的问候,

Mehul Makwana。

1 个答案:

答案 0 :(得分:2)

尝试从AutoPostBack="True"文本框中删除txtPriceTo,看看是否有帮助。