Changeset 6311 for branches/WebApplication
- Timestamp:
- 05/27/11 18:16:28 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/FilterController.cs
r6305 r6311 28 28 fm.Content = (CombinedFilter)Session["Content"]; 29 29 QueryServiceClient client = Query.GetClientFactory(); 30 31 long[] ids = client.GetRunIds(fm.Content); 32 33 Response.Write("Found <" + ids.Count() + "> Runs."); 30 long[] ids; 31 32 try 33 { 34 ids = client.GetRunIds(fm.Content); 35 } 36 catch (Exception e) 37 { 38 ids = new long[0]; 39 } 40 34 41 QueryModel qm = new QueryModel(); 35 42 qm.Runs = ids;
Note: See TracChangeset
for help on using the changeset viewer.