Hi all,
I have a webservice and ASP.NET ATLAS enabled, and working with IE6. There is not ATLAS controls, it is very simple call from javascript, passing 3 arguments.
I am tying to make it works in Internet Explorer Mobile in a Smartphone with Windows Mobile 5.0, but when I press the button, nothing happens...
In theory, Explorer Mobile supports HTML 4.01 CSS and Extensible HTML (XHTML), and XMLHTTP Request...
Have any try this or something with similar scenario?
Thanks in advance
David
I don't believe the mobile version of internet explorer supports the xmlhttprequest object or has any AJAX support for that matter.Please, see this bloghttp://blogs.msdn.com/iemobile/archive/2005/11/15/493200.aspx
If IE Mobile supports AJAX and this sentence
xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP");
, I can't undestand why ATLAS will not support IE Mobile....
This is the function inside WebResource.axd generated by ATLAS that creates XMLHTTPRequest object
window.XMLHttpRequest = function() {
var progIDs = [ 'Msxml2.XMLHTTP', 'Microsoft.XMLHTTP' ];
for (var i = 0; i < progIDs.length; i++) {
try {
var xmlHttp = new ActiveXObject(progIDs[i]);
.....
Very similar no? I think that is imperative that ATLAS works for IE Mobile...
hello.
i really don't understand much about mobile devices...is there any sniffer that can capture the traffic between the browser and the server? (something like fiddler, that is)
No comments:
Post a Comment