if (!IsPostBack)
        {
            lstMultipleValues.Attributes.Add("onclick", "FindSelectedItems(this," + txtSelectedMLValues.ClientID + ");");
            for (int i = 0; i < lstMultipleValues.Items.Count; i++)
            {
                lstMultipleValues.Items[i].Attributes.Add("onclick","itemClick();");
            }
        }首次加载页面的时候 这两个事件 都注册成功了 当我提交了一次页面 第一个事件 还存在 第二个事件 就不存在了 我很不明白是为什么 我觉得服务器控件的状态和值 应该都能靠viewstate保持住的