Ajaxcontroltookit 网站如何异步重新加载标签文本?

发布于 2024-11-30 10:39:46 字数 415 浏览 2 评论 0原文

在 Ajaxcontroltoolkit 网站中,他们在标签示例中进行了大量异步更新

http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/CascadingDropDown/CascadingDropDown.aspx

在本网站中,如果您选择奥迪 -> S4->金属,此下拉菜单下方的标签会自动更新(之前:[尚未提供响应]之后:您选择了 Azure Audi A4。好车!)

任何人都可以分享一个如何执行此操作的简单示例吗?

In Ajaxcontroltoolkit website they do a lot of async upates in their labels

example: http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/CascadingDropDown/CascadingDropDown.aspx

In this website, if you select Audi -> S4 -> Metallic, the Label below this DropDowns is updated automatically (before: [No response provided yet] after: You have chosen a Azure Audi A4. Nice car!)

can anyone share a simple example of how to do this?

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

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

发布评论

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

评论(2

无法回应 2024-12-07 10:39:46

来自 ajaxcontrol 工具包示例项目

protected void DropDownList3_SelectedIndexChanged(object sender, EventArgs e)
{
    // Get selected values
    string make = DropDownList1.SelectedItem.Text;
    string model = DropDownList2.SelectedItem.Text;
    string color = DropDownList3.SelectedItem.Text;

    // Output result string based on which values are specified
    if (string.IsNullOrEmpty(make))
    {
        Label1.Text = "Please select a make.";
    }
    else if (string.IsNullOrEmpty(model))
    {
        Label1.Text = "Please select a model.";
    }
    else if (string.IsNullOrEmpty(color))
    {
        Label1.Text = "Please select a color.";
    }
    else
    {
        Label1.Text = string.Format("You have chosen a {0} {1} {2}. Nice car!", color, make, model);
    }
}

from the ajaxcontrol toolkit sample project:

protected void DropDownList3_SelectedIndexChanged(object sender, EventArgs e)
{
    // Get selected values
    string make = DropDownList1.SelectedItem.Text;
    string model = DropDownList2.SelectedItem.Text;
    string color = DropDownList3.SelectedItem.Text;

    // Output result string based on which values are specified
    if (string.IsNullOrEmpty(make))
    {
        Label1.Text = "Please select a make.";
    }
    else if (string.IsNullOrEmpty(model))
    {
        Label1.Text = "Please select a model.";
    }
    else if (string.IsNullOrEmpty(color))
    {
        Label1.Text = "Please select a color.";
    }
    else
    {
        Label1.Text = string.Format("You have chosen a {0} {1} {2}. Nice car!", color, make, model);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文