예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (WS.RequestString("action") == "del")
            {
                int id = WS.RequestInt("id");
                if (id > 0)
                {
                    NewsView.Del(string.Format("id={0}", id));
                }
            }

            if (!IsPostBack)
            {
                BindList();
            }
        }