コード例 #1
0
ファイル: News.aspx.cs プロジェクト: chendong37/ChangeDemo
 public void UpdateNewsStatus(int newsId, int status)
 {
     if (newsBll.UpdateNewsStatus(newsId, status))
     {
         //Maticsoft.Common.MessageBox.ShowAndRedirect(this, "更新成功!", "News.aspx");
         Response.Redirect("News.aspx");
     }
 }