I am trying to pass a path url as parameter to my asp.net mvc controller method through angularjs. When I debug I see that Path parameter on code is missing slashes in it.
Like instead of "D:\MyDir\List.txt" it show "D:MyDirList.txt"
how can I pass url as parameter in angular?
public JsonResult GetData(string Path)
{
var details = GetResult(Path);
return Json(details, JsonRequestBehavior.AllowGet);
}
var ListPath = "D:\MyDir\List.txt";
$http.get("/Home/GetData",
{ params: { "Path": ListPath })
.then(function (response) {
console.log(response);
});