Ejemplo n.º 1
0
        public string saveDefine1(string vchrUid)
        {
            string s = "";

            try
            {
                string sSQL = @"insert into Define1(S1,s6,SysCreateDate)values('" + vchrUid.Trim() + "','系统登录',getdate())";
                clsSQLCommond.ExecSql(sSQL);
            }
            catch (Exception ee)
            {
                s = ee.Message;
            }
            return(s);
        }