all groups > dotnet jscript > december 2007
The .Net Way to get the XML Payload from the Request?
Posted by GeoffMcGrath at 12/16/2007 8:51:55 PM
In ASP2.0, on the server the following server-side code could be used
to load XML sent via the XMLHTTP object from a client:
<%@language=jscript%>
<%
var domDocument = Server.CreateObject( 'MSXML2.DOMDOCUMENT' );
domDocument.load( Request );
%>
I always thought it was cool that the Reque... more >>
Cross-browser Real-time Message, Remote JavaScript Callback, and Monitoring Browser States
Posted by msdngroup at 12/15/2007 3:33:20 PM
Hi, All:
Can you do something like cross-browser real-time message, remote JavaScript
callback and monitoring browser states remotely?
Can you ensure web browser running with super speed and much faster than
AJAX?
Can you execute asynchronus requests and block browser navigation buttons at ... more >>
Current DOM element from textRange
Posted by Mike Miller at 12/7/2007 11:00:00 AM
Does anyone know how to return the current DOM element(s) that are
represented within a given textRange object?
The textRange contains the HtmlText and text of what was selected, but I
have not been able to find a way to get the actual nodes. parentElement does
not work for me because I ne... more >>
Converting from ASP 2.0 to ASP.Net
Posted by GeoffMcGrath at 12/2/2007 9:47:54 PM
I'm converting an old ASP 2.0 file that used interpreted javascript,
and need it to work in Jscript.net on in an .aspx file. The old code
instantiated an MSXML object using late binding, in the conversion I'd
like to take advantage of early binding. Here is the original code:
var oXML = ... more >>
Converting from ASP 2.0 to ASP.Net
Posted by geoffrey.mcgrath@gmail.com at 12/2/2007 8:14:57 PM
I'm converting an old ASP 2.0 file that used interpreted javascript,
and need it to work in Jscript.net on in an .aspx file. The old code
instantiate an MSXML object using late binding, in the conversion I'd
like to take advantage of early binding. Here is the original code:
var oXML = S... more >>
|