I have a button in my webpage which calls an ajax method a s below $.ajax({ cache: false, type:'POST', data: 'type='+userType +'&user='+user , url:' ".\yii\helpers\Url::to([$program.'/'.$url.'/setcustomer/'])." ', success: function(data) { console.log('Hii'); $('#phoneErr').html(data); } }); This works in all browsers except IE11 I get the following error when i click on the [...] read more
I recognize this type of question has a long history, but the way I am using this must be the correct '.net way' and yet it does not seem to work. I have a trivial synchronous IP server daemon that does a simple AcceptSocket, do some stuff, socket.send, socket.shutdown, socket.close. [...] read more
Test sample http://code.msdn.microsoft.com/windowsapps/Getting-started-with-310271df I am facing some absurd issue with WinJS.xhr call. Below sample if you run it works for the first time. However, next time onwards it gives this error! Exception is about to be caught by JavaScript library code at line 2351, column 21 in ms-appx://microsoft.winjs.1.0/js/base.js 0x800c0008 - [...] read more
I've compiled a Win32 console app in C++ that at some point attempts to download a file from a URL. Built on Visual Studio 2019 and Windows 10, it targets a Windows XP 2002 SP3 system (compiled using the Visual Studio 2015 - Windows XP v140xp Platform Toolset). The app [...] read more
THE PROBLEM I'm trying to create a page that updates a specific records field in a table when a checkbox is clicked (ideally without refreshing the page). I thought jQuery/AJAX would work for me. Apparently not. I've been struggling with this for a while, so I decided to scale it [...] read more
I'm aware there is a similar question here. However my symptoms differ. There seems to be some kind of URL length restriction in place that I couldn't find documented. The limit seens to be 2084 (sic! not 2048!) characters in the URL. The easiest repro is just a console application [...] read more
I'm trying to create a loginpage with jQuery/AJAX, my code work well in other browser but i have a problem in IE11. IE11 throw an exception SCRIPT7002: XMLHttpRequest: Network Error 0x800c0008, The download of the specified resource has failed. Code $.ajax({ type: 'post', url: $('#form-login').attr('action'), data: $('#form-login').serialize(), success: function (data) [...] read more
I add MIME filter to my WebBrowser Control by IInternetSession.RegisterMimeFilter。 The MIME type is "text/html"。 The filter have a bug that the flash cant shown in some site such as "http://cn.yahoo.com/". I tryed add "" before the tag,noneffective。 I return data directly but falsh still invisible。 I set the IE [...] read more
One of my users cannot work with RSS feeds. The problem was originally noticed with Outlook (where we get error 0x800C0008), but we can reproduce the problem with Internet Explorer * Calling any RSS feed URL in IE results in "The download of this feed was interrupted". We even created [...] read more
I'm trying to use URLDownloadToFile to download a file, but am getting INET_E_DOWNLOAD_FAILURE after the file is partially downloaded. My call looks like: HRESULT hRes = ::URLDownloadToFile( NULL, strTemp, strDestination, 0, pCallback ); strTemp gives the URL in the form: https://// pCallback is an implementation of IBindStatusCallback, IHttpSecurity, and IWindowForBindingUI. [...] read more