GetScriptFilled() публичный Метод

public GetScriptFilled ( bool includeScriptTag, bool loadMinIfAvailable, bool validate, bool throwException, string &retMessage ) : string
includeScriptTag bool
loadMinIfAvailable bool
validate bool
throwException bool
retMessage string
Результат string
Пример #1
0
        private static string GetSaveScript()
        {
            string message;
            var templateSave = new TemplateInfoDetailSave
            {
                ScriptServiceUrl = UtilsGeneric.GetCurrentService(ServiceUrl)
            };

            string htmlScript = templateSave.GetScriptFilled(true, UtilsGeneric.LoadMinJs, UtilsGeneric.Validate, UtilsGeneric.ThrowException,
                                                                  out message);
            return htmlScript;
        }