我有一个asp Dropdown,我在运行时通过ajax 在客户端上填写。
当我回发到我的代码隐藏时,虽然它没有任何值,也没有选定的值。
我可以将值转储并解析到隐藏字段中,但有更好的方法吗?
谢谢
在后面的代码中:
protected void btnEdit_Click(object sender, EventArgs e)
{
elemSchedule = ScheduleManager.GetSchedule(elemScheduleID);
KezErrorList errors = new KezErrorList();
using (var scope = new TransactionScope())
{
try
{
int priority = int.Parse(ddlPriority.SelectedValue);
在前端:
fillPriorityList("#<%= ddlPriority.ClientID %>",
$("#<%= txtID.ClientID %>").val(), $("#<%= ddlEmp.ClientID %>").val(),
$("#<%= txtStartDate.ClientID %>").val(), $("#<%= txtPriority.ClientID %>").val());