private void LoadPage()
        {
            string sql   = string.Empty;
            string error = string.Empty;

            if (ToolManager.CheckQueryString("Id"))
            {
                sql = string.Format(@" select * from MakeCollectionsMode where Id='{0}' ", ToolManager.GetQueryString("Id"));
                this.trNumber.Visible = false;
                //sql = string.Format(@" select * from MakeCollectionsMode where Id='{0}' ", "7");
                MakeCollectionsModes makecollectionsmode = MakeCollectionsModeManager.ConvertDataTableToModel(sql);
                this.txtNumber.Text = makecollectionsmode.Id;
                this.txtMakeCollectionsMode.Text = makecollectionsmode.MakeCollectionsMode;
                btnSubmit.Text = "修改";
            }
            else
            {
                btnSubmit.Text = "添加";
            }
        }