<%@ Page Language="C#" %> <%@ Import Namespace="Test" %> <% int[] npics = { 250, 500, 1000 }; int[] picsize = { 50000 /*, 100000, 200000 */ }; int[] nthreads = { 10, 20, 40 }; for(int i = 0; i < npics.Length; i++) { for(int j = 0; j < picsize.Length; j++) { PicTest.CreateTable(npics[i], picsize[j]); for(int k = 0; k < nthreads.Length; k++) { Response.Write(PicTest.CheckTest(nthreads[k], npics[i], picsize[j]) + "
"); } PicTest.DropTable(); } } %>