如何在链接按钮单击事件上更改数据列表项模板字段内的链接按钮文本?

发布于 2024-10-18 04:40:25 字数 128 浏览 3 评论 0原文

我在 datalist1 项目模板字段中有一个链接按钮,我希望当用户单击链接按钮时,其文本将为“启用”,如果链接按钮文本为“启用”并且 panel1 将可见,则再次在链接按钮单击事件上链接按钮文本将为“禁用”并且 panel1 将被隐藏...

I have a linkbutton inside datalist1 item template field, i want when user click on linkbutton then its text would be "enable" and if the linkbutton text is "enable" and panel1 will be visible then again on linkbutton click event linkbutton text would be "disable"and panel1 will be hidden...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨夜星沙 2024-10-25 04:40:25

这是适用的代码:

protected void Link_Click(object sender, EventArgs e)
{
    LinkButton link = sender as LinkButton;
    if(link.Text == "enabled")
    {
        link.Text = "disabled";
        panel1.Visible = false;
    }
    else
    {
        link.Text = "enabled";
        panel1.Visible = true;
    }
}

Here is the applicable code:

protected void Link_Click(object sender, EventArgs e)
{
    LinkButton link = sender as LinkButton;
    if(link.Text == "enabled")
    {
        link.Text = "disabled";
        panel1.Visible = false;
    }
    else
    {
        link.Text = "enabled";
        panel1.Visible = true;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文