Example #1
0
        protected DataSet CallDataSetService(string ClientKey, string inputValue, dlg_CallFunction callFunction)
        {
            inputValue = HtmlDecode(inputValue);
            DataSet ds = null;
            ds = callFunction(ClientKey, inputValue);
            return ds;

        }
Example #2
0
        protected DataSet CallDataSetService(string ClientKey, string inputValue, dlg_CallFunction callFunction)
        {
            inputValue = HtmlDecode(inputValue);
            DataSet ds = null;

            ds = callFunction(ClientKey, inputValue);
            return(ds);
        }
Example #3
0
 protected string CallCSVService(string ClientKey, string inputValue, dlg_CallFunction callFunction)
 {
     inputValue = HtmlDecode(inputValue);
     
     DataSet ds = null;
     ds = callFunction(ClientKey, inputValue);
     //new CCoreDao().Login(ClientKey, inputValue);
     return CDataParser.DataSetToCSV(ds);
    
 }
Example #4
0
        protected string CallCSVService(string ClientKey, string inputValue, dlg_CallFunction callFunction)
        {
            inputValue = HtmlDecode(inputValue);

            DataSet ds = null;

            ds = callFunction(ClientKey, inputValue);
            //new CCoreDao().Login(ClientKey, inputValue);
            return(CDataParser.DataSetToCSV(ds));
        }