Aspose.Cells.GridWeb.Examples.CSharp.Controllers.GridWebFAQController.Index C# (CSharp) Method

Index() private method

private Index ( System.Web.HttpPostedFileBase file, string mode ) : System.Web.Mvc.ActionResult
file System.Web.HttpPostedFileBase
mode string
return System.Web.Mvc.ActionResult
        public ActionResult Index(HttpPostedFileBase file, string mode)
        {
            this.postedFile = file;
            Thread newThread = new Thread(Calculate, 1048576);
            newThread.Start();
            newThread.Join();
            return View();
        }

Same methods

GridWebFAQController::Index ( ) : System.Web.Mvc.ActionResult
GridWebFAQController