gpt4 book ai didi

c# - ModalPopup 不会显示

转载 作者:行者123 更新时间:2023-11-30 18:33:46 26 4
gpt4 key购买 nike

不知何故,我真的卡住了,我不知道为什么。我已经通过谷歌搜索等阅读了大约 3 个站点,但它对我不起作用。

在我的 Aspxsite 中我有:

<asp:TableCell>
<asp:UpdatePanel runat="server" UpdateMode="Conditional" ID="UP2">
<%--<Triggers>
<asp:AsyncPostBackTrigger ControlID="ButtonAdd" EventName="Click" />
</Triggers>--%>
<ContentTemplate>
<asp:Button ID="ButtonAdd" runat="server" Text="Add Product" onClick="AddProduct" />
<asp:HiddenField ID="HFAdd" runat="server" Visible="false" />
<ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender1" runat="server" BackgroundCssClass="modalBackground"
TargetControlID="ButtonAdd" PopupControlID="PanelChoose" BehaviorID="MPEchoose">
</ajaxToolkit:ModalPopupExtender>
<asp:Panel ID="PanelChoose" runat="server" BorderStyle="Solid" BackColor="ButtonShadow" Visible="false">
<asp:Label ID="Label13" runat="server" Text="Please choose a product!"></asp:Label>
<asp:Table ID="Table3" runat="server">
<asp:TableRow>
<asp:TableCell>
<asp:Button ID="ButtonOK" runat="server" Text="Ok" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
</asp:TableCell>

在后面的代码中:

enter codprotected void AddProduct(object sender, EventArgs e)
{

if (ProductsDDL.SelectedValue.ToString() == "0")
{
Panel1.Visible = true;
ModalPopupExtender1.Show();
}
else
{
ListItem product = new ListItem(ProductsDDL.SelectedItem.ToString(), ProductsDDL.SelectedValue.ToString(), true);
ProductLB.Items.Add(product);
product.Enabled = true;
product.Attributes.CssStyle.Add("Background-Color", LBcolour.Name.ToString());
}
}

好吧,我的问题是:

它不会执行 AddProduct() ...

我已经尝试过的:

要将HFAdd 用作TargetControllID,但在后面的代码中它也不能与.Show() 一起使用。然后,如果我不设置 PanelChoose visible="false",它就会显示在网站上。

所以我将其设置为 false 并尝试在后面的代码中将其设置为 true,但它也没有显示。但是随后它会插入具有所选颜色的产品。但是面板没有显示。然后还有很多其他的东西,但这里不需要,因为它实际上没有用。

请帮帮我!

最佳答案

好的,问题出在 UpdatePanel,您需要设置触发器并且我将 Panel1s 可见性设置为 false ...

所以删除:

Panel1.Visible = true;

Visible="false"

关于c# - ModalPopup 不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16980930/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com