这是javascript函数
function  changeASort(DDLA,DDLC) {
        var id = DDLA;
        var id2 = DDLC;
        alert(id);
        alert(id2);
}这是asp.net的部分函数
DropDownList DDListSort = new DropDownList();
DDListSort.ID = "DDListSort" + ControlName;
string DDListASortID = "DDListASort" + ControlName;
DDListSort.Attributes.Add("onchange", "changeASort(" + DDListSort.ID + "," + DDListASortID + ");");问题:
触发changeASort函数,可是DDLA的值不是等于DDListSort.ID ,而是等于object