public ActionResult List()
        {
            WebView.WebService._base myWebService;
            myWebService = new WebService._base();

            WebService._base.OSPInstMaintenance instM = new WebService._base.OSPInstMaintenance();
            instM = myWebService.GetOSPInstMaintenance(0, 10);

            ViewData["data4"] = instM.InstMaintenanceList;

            string input = "\\\\adsvr";
            //string input = "\\\\server\\d$\\x\\y\\z\\AAA";
            string output = String.Format("http:{0}", input.Replace("\\d$\\x\\y", String.Empty).Replace("\\", "/"));

            ViewBag.output = output;

            return(View());
        }