在下拉框中进行更改的情况下调用Aspx.cs中的函数

本文关键字:调用 情况下 Aspx 函数 cs | 更新日期: 2023-09-27 17:59:16

我有一个页面,在该页面中,在更改下拉框中的值时,将传递下拉框中相应的文本,以从数据库中获取值。

<asp:DropDownList ID="dropid" runat="server" OnChange="Getvaluesfromaspx"></asp:DropDownList>

我希望从aspx文件调用aspx.cs中名为"Getvaluesfromaspx"的函数。请帮忙。

在下拉框中进行更改的情况下调用Aspx.cs中的函数

使用"OnSelectedIndexChanged"事件而不是"OnChange"事件。

同时将AutoPostBack属性值设置为true。

<asp:DropDownList ID="dropid" AutoPostBack="true" runat="server" OnSelectedIndexChanged="Getvaluesfromaspx"></asp:DropDownList>

在后面的代码中

protected void Getvaluesfromaspx(object sender, EventArgs e)  
{  
    //Do whatever want to do here. 
} 
相关文章: