Hey, Is your pen drive shows empty even the data exists?. Here i can help you. Please follow the steps. Check if the files are not in hidden mode. Click on "Start" =>Run => Type cmd and press Enter. Here I assume your pen drive drive letter as F: Enter this command. attrib - h - r - s /s / d f :\*.* Open your pend drive now and you can see your files . 😉
isAjaxRequest Determines whether the specified HTTP request is an AJAX request. Namespace: System.Web.Mvc Assembly: System.Web.Mvc (in System.Web.Mvc.dll) Syntax : public static bool IsAjaxRequest( this HttpRequestBase request ) Parameters request Type: System.Web.HttpRequestBase The HTTP request. Return Value Type: System.Boolean true if the specified HTTP request is an AJAX request; otherwise, false . link to sourse When we try to send request from AngularJs, this method always return false. Why is this happening is, the angular not set the header X-Request-With property. So we should set it. For that, var app = angular.module("app", []); app.config(['$httpProvider', function ($httpProvider) { $httpProvider.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequ...