Example #1
0
        //删除库存信息
        protected void stock_delete(String _stockId)
        {
            int _retVal;

            span_profile_tips.Attributes["style"] = "";

            _retVal = _stockLogic.StockDelete(_stockId);

            if (_retVal == 1)
            {
                span_profile_tips.InnerHtml = "删除成功!";
                stock_query();
            }
            else
            {
                span_profile_tips.InnerHtml = "删除失败,请稍后再试!";
            }
        }