예제 #1
0
        public static string GetCustomMessage(Hashtable langHashTable, string messageKey, string messageDefault)
        {
            string msg = "";

            if (!CustomTransform.GetLanguageString(messageKey, langHashTable, out msg))
            {
                msg = messageDefault;
            }
            return(msg);
        }
예제 #2
0
        protected void ShowSending(string msgKey, string msgDefault, bool isDisplay)
        {
            string msg = string.Empty;

            if (!CustomTransform.GetLanguageString(msgKey, HsLangTable, out msg))
            {
                msg = msgDefault;
            }
            ShowProcessForm(msg, isDisplay);
        }