问问题
3881 次
2 回答
0
从外观上看,您已经完成了大部分工作,您只需要更改此行:
string coName = Request.Form["custName"];
至:
string coName = customerName.SelectedValue;
于 2013-07-03T23:28:58.867 回答
0
看起来您正在使用设计器来设置下拉列表数据源。以下是您如何在代码中执行此操作:
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
MyLinqToSqlDataContext db = new MyLinqToSqlDataContext();
var result = from c in db.Customers
select g;
customerName.DataSource = result.ToList();
customerName.DataTextField = "Name";
customerName.DataValueField = "ID";
customerName.DataBind();
...
}
}
于 2013-07-03T22:49:15.417 回答