コード例 #1
0
ファイル: Property.aspx.cs プロジェクト: creerintech/rretal
    public static string[] GetCompletionList(string prefixText, int count, string contextKey)
    {
        DMProperty Obj_CM = new DMProperty();

        String[] SearchList = Obj_CM.GetSuggestRecord(prefixText);
        return(SearchList);
    }
コード例 #2
0
    public static string[] GetAllProjectName(string prefixText, int count, string contextKey)
    {
        DMProperty obj_PM = new DMProperty();

        String[] SearchList = obj_PM.GetSuggestedAllProjectName(prefixText);
        return(SearchList);
    }
コード例 #3
0
ファイル: Property.aspx.cs プロジェクト: creerintech/rretal
    public void ReportGrid(string RepCondition)
    {
        string Substring = RepCondition.Split('-')[0];

        Ds = obj_Property.FillReportGrid(Substring, out StrError);
        if (Ds.Tables.Count > 0 && Ds.Tables[0].Rows.Count > 0)
        {
            HttpContext.Current.Cache["Dir"] = Ds.Tables[0];
            GrdReport.DataSource             = Ds.Tables[0];
            GrdReport.DataBind();
        }
        else
        {
            GrdReport.DataSource = null;
            GrdReport.DataBind();
        }
        obj_Property = null;
        Ds           = null;
    }