locked
How search datas between two value RRS feed

  • Question

  • Dear sir,

    following are my necessary code.How convert this console application into asp.net web application

    int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 };
                var undefined = from a in array
                                where a > 4 && a < 13
                                select a;
                foreach (int a in undefined)
                    Console.WriteLine("{0}", a);
                Console.ReadLine();

    my asp.net web application have two textbox From and To and a button how get data  filter to datalist. kindly give me a appropriate answer i ask the question before. i did as per instruction but I could not create it.

    Thanks & Regards

    Rajeesh.p.p.

    aspectind@gmail.com

    Thursday, July 5, 2018 6:02 PM