我的aspx中有一个下拉列表,其中包含一个为其设置值的事件:
protected void Page_Load(object sender, EventArgs e)
{
DropDownList1.Items.Add("No Image News");
DropDownList1.Items.Add("Small News");
DropDownList1.Items.Add("Medium News");
DropDownList1.Items.Add("Large News");
DropDownList1.DataBind();
}
我有一个包含方法的类文件,我想使用方法内的下拉列表。
示例:如果选择下拉列表值为“Car”,那就是..
是否有可能以某种方式使用类文件中aspx文件的下拉列表?
答案 0 :(得分:2)
创建一个以DropDownList
为参数的函数
从您.aspx.cs
文件中调用该函数
它会起作用。
功能就像这样
public void MyControlData(DropDownList ddl)
{
}
在您要定义此功能的System.Web
文件中添加.cs
的引用。
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public class MyControlData
{
public void MyControlData(DropDownList ddl)
{
// DO SOMETHING HERE
}
}