在数据列表中是一个链接按钮(asp:LinkButton),该链接按钮可以打开模式,非常有用。它还具有一个onclick(因此我可以获取产品的ID,以将其显示在detailsview中)。我在代码中设置了一个断点,并且代码甚至无法触发。我对另一个按钮(asp:Button)有相同的问题,但是另一个按钮(asp.Button)确实可以工作。
我试图用Google搜索它,问同学和我们的老师,但是没人知道该怎么做。删除'data-toggle =“ modal” data-target =“#ProductModal”'没有帮助。 在制作测试页时,我制作了一个可运行的asp:Button,该问题可能不是必填验证程序或引导程序。
Github链接https://github.com/Troebel58/broken-webshop 我从未使用过Github,所以如果链接无法正常工作,请告诉我。
linkButton: html:
<asp:LinkButton ID="lbtnProduct" runat="server" CommandName="Select" OnClick="lbtnProduct_Click">
C#:
protected void lbtnProduct_Click(object sender, EventArgs e)
{
Response.Write("something");
}
按钮: html:
<asp:Button ID="btnLogin" runat="server" Text="Login" CssClass="Loginknop" OnClick="btnLogin_Click" />
C#:
protected void btnLogin_Click(object sender, EventArgs e)
{
Response.Write("something");
}
工作按钮: html:
<asp:Button ID="btnNext" runat="server" Text="Volgende" OnClick="btnNext_Click" CssClass="btn btn-secondary" Width="15%"/>
C#:
protected void btnNext_Click(object sender, EventArgs e)
{
if (currentposition != totalrows - 1)
{
currentposition = currentposition + 1;
bindData();
}
}