jQuery.ajax(
{
url: "Update.ashx",
type: "POST",
data: " Honor="+Honor,
dataType: 'json',
timeout: 1000,
error: function(data) {alert("您没有权限或操作错误!");},
//error: function(XMLHttpRequest, textStatus, errorThrown) { alert(textStatus + errorThrown); },
success: function(data) {
这里的问题是。我的红色标注的地方。有一个空格。在URL传输中。这种空格会导致。REQUEST【HONOR】接收不到值。
checkBOX:
第一种:通过HTML控件实现的话下拉列表。
使用ASPWEB控件按钮的事件。必须用databind()
否则(使用JS加载下来列表)。对NewsType.Value;NewsType.SelectedIndex;等。操作都是空“”NUll
//绑定下来列表数据 database.BLL.D_IBll IBll = database.BLL.D_BllFactory.CreateBll("database.BLL", "D_NewsType");//工厂模式得到值 NewsType.DataSource = IBll.GetList("1=1 order by Sequence asc").Tables[0];//声明数据源 NewsType.DataTextField = "Caption";//TEXT显示的 NewsType.DataValueField = "Id";//数据值 NewsType.DataBind();//绑定
第二种:通过JS加载下拉列表。则必须通过JS提交。不能使用ASPWEB控件按钮的事件。