public void ProcessRequest(HttpContext context)
        {
            var id = context.Request.QueryString["id"];
           // LumexDBPlayer db = LumexDBPlayer.Start();
            DataTable dt = new DataTable();
            ProductBLL product = new ProductBLL();
            dt = product.GetProductNamesByWareHouse(id);

            StringBuilder sb = new StringBuilder();

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                string productName = dt.Rows[i]["ProductName"].ToString()+" #"+dt.Rows[i]["ProductId"].ToString() + ";";
                sb.Append(productName).Append(Environment.NewLine);
            }

            context.Response.Write(sb.ToString());
        }