Esempio n. 1
0
        protected void markButton_Click(object sender, EventArgs e)
        {
            // Call our service to remove on click
            var srv = new ShoppingListController();

            item.marked = !item.marked;
            srv.updateItem(item.id, item);
            Response.Redirect(Request.RawUrl);
        }