예제 #1
0
 protected void lbClearMyLightbox_Click(object sender, EventArgs e)
 {
     
     string lightboxId = this.ddlMyLightBox.SelectedValue;
     if (!string.IsNullOrEmpty(lightboxId))
     {
         Resource r = new Resource();
         if (r.ClearLightBox(new Guid(lightboxId)))
         {
             ShowMessage("清除收藏夹成功过");
             bindMyLightBox(this.AspNetPagerLightBox.PageSize,1);
         }
         else
         { 
             
         }
     }
 }