在asp.net ajax web应用程序中的radgrid的NeedDatasource事件中获取下拉列表中选定的值

发布于 2024-11-14 21:27:57 字数 702 浏览 3 评论 0原文

我想在选择时从下拉列表中获取值。在该值的选择上,我将触发一个简单的选择查询,即。

"select * from Category where cat_name ='" + dropdownlistselectedvalue + "'"

的代码

这里是 needDatasource protected void rdgridview_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e) { if (!e.IsFromDetailTable) {
//我想在此处获取下拉列表所选值,即

          string dpvalue = DropDownList1.SelectedValue.ToString();

      string strqry = "select * from Categories where Category_Name = '"+ dpvalue +"'";

        rdgridview.DataSource = getDataTable(strqry);            
    }
}

但我无法从 needDatasource 方法中的下拉列表所选值中获取值。我该如何获取下拉列表控件的值或触发任何事件?

提前致谢

I want to fetch value from dropdownlist when selected. On that selection of value I am firing a simple select query ie.

"select * from Category where cat_name ='" + dropdownlistselectedvalue + "'"

here is the code of needDatasource

protected void rdgridview_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
{
if (!e.IsFromDetailTable)
{
//I want to fetch the dropdownlist selected value here ie

          string dpvalue = DropDownList1.SelectedValue.ToString();

      string strqry = "select * from Categories where Category_Name = '"+ dpvalue +"'";

        rdgridview.DataSource = getDataTable(strqry);            
    }
}

But I am not able to fetch the value from the dropdownlist selected value in needDatasource method. How shall I fetch the value or fire any event of dropdownlist control?

Thanks in advance

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

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

发布评论

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

评论(2

℡Ms空城旧梦 2024-11-21 21:27:57

Telerik 有详细的文档。您可能想尝试简单的数据绑定。请在此处查看。
有关 NeedsDataSource 文档,请查看此处

Telerik has a detailed documentation. You might want to try simple data binding. Check it here.
For NeedsDataSource documentation, check here.

痴梦一场 2024-11-21 21:27:57

您可以通过将下拉列表选定的值保存在 ViewState 中来轻松完成此操作,并在 dropdownlist 的 SelectedIndexChanged 事件中执行此操作。

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    ViewState["List1_Value"] = DropDownList1.SelectedValue.ToString();

} 

然后在 needDatasource 事件中从 ViewState 获取值:

string strqry = "select * from Categories where Category_Name = '" + ViewState["List1_Value"]+ "'";

You can do that easily by saving the dropdownlist selected value in a ViewState, do that in the SelectedIndexChanged event for the dropdownlist .

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    ViewState["List1_Value"] = DropDownList1.SelectedValue.ToString();

} 

then get the value from ViewState in the needDatasource event:

string strqry = "select * from Categories where Category_Name = '" + ViewState["List1_Value"]+ "'";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文