コード例 #1
0
ファイル: AlbumList.aspx.cs プロジェクト: ctxsdhy/xsblog
        /// <summary>
        /// 删除事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnDelete_Click(object sender, EventArgs e)
        {
            var guids = FormHelper.GetRepeaterSelectedRowId(rptList);

            AlbumBll.DeleteByGuIds(guids);
            BindData();
        }