I have thrown Ajax errors from 2 pages (controllers). Following is the Fiddler output. Can someone please look and tell me why first fiddler session opens the browser but not second one - both are returning the same javascript.
window.location = 'http://www.google.com'; return false;
POST mySite:50441/Order/GetOrderByID?id=333 HTTP/1.1 Host: mysite:50441 Connection: keep-alive Content-Length: 0 Origin: mySite:50441 X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.75 Safari/537.1 Accept: / Referer: mysite:50441/ Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
HTTP/1.1 200 OK Server: ASP.NET Development Server/10.0.0.0 Date: Mon, 13 Aug 2012 02:30:29 GMT X-AspNet-Version: 4.0.30319 X-AspNetMvc-Version: 3.0 Cache-Control: private Content-Type: application/x-javascript; charset=utf-8 Content-Length: 56 Connection: Close
window.location = 'http://www.google.com'; return false;
This opens google browser....
POST mySite:50441/Order/GetFilteredOrders HTTP/1.1 Host: mysite:50441 Connection: keep-alive Content-Length: 90 Origin: mySite:50441 X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.75 Safari/537.1 Content-Type: application/x-www-form-urlencoded Accept: application/json, text/javascript, /; q=0.01 Referer: mysite:50441/Order/List Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: .ASPXAUTH=4BC044CFA8A63AF8F84B3A4719C495D0D7039EFB484E727226FBA352BCBC30B905BA71DD782036501CFDDBE2BA9A375C8088236FF15E9CA2A77F3D8133859AB9332F35B9DCE429F0B3DF67A60FCBFF9670463CEA052CF64B814658BC4F7BA1F54FE60FACCA9FCFDCBB9248CE52355B28996416B457C0FDC5D6CA06755B5C41BB8305DA0D2208FDE03BA4562CDC1E237BF1B0D7E355244FFECBA7910B73F77942934A565A648DFAD6048BDFE60E5CF593
_search=false&nd=1344825115730&rows=20&page=1&sidx=%5Bt0%5D.front_end_order_date&sord=desc HTTP/1.1 200 OK Server: ASP.NET Development Server/10.0.0.0 Date: Mon, 13 Aug 2012 02:31:57 GMT X-AspNet-Version: 4.0.30319 X-AspNetMvc-Version: 3.0 Cache-Control: private Content-Type: application/x-javascript; charset=utf-8 Content-Length: 56 Connection: Close
window.location = 'http://www.google.com'; return false;
This doesn't open google browser
BTW, first view does have only button but second view have jQueryGrid and it calls the controller action.
This is the link I followed to implement global error handling: ASP.NET MVC Custom Error Handling Application_Error Global.asax?