Jscript and Windows Mobile
Mon, 28 Jan 2008 01:52:00 -0800
Hi
I'm trying to run a short jscript script file that popup a window to the
user and the user can press OK or Cancel buttons.
When I run the script (via CScript or WScript) it runs properly but in
Windows Mobile (on HTC Tytn2 device) nothing happens.
Here is an example of the script:
function disp_c ...
|
jscript with radiobutton workaround??
Wed, 23 Jan 2008 08:56:00 -0800
Has anyone ever noticed that when an onclick event is tired to a radio button
list AND the user clicks the LABEL of a radio button in the list rather then
the button itself that the JS function will fire BEFORE the radio button list
is refreshed? However, if the user clicks the radio button itself, then the
...
|
Forever
Sun, 20 Jan 2008 12:44:59 -0800
...
|
CDOSYS not getting user input from form (Response.form)
Tue, 8 Jan 2008 22:40:00 -0800
I have a simple HTML form on my website.I`m posting this form via CDOSDYS to
an email address.The problem is that none of the user input is sent i.e the
email arrives with the following:
Lead:
Telephone:
Email:
Country:
Enquiry:
Time:
My HTML form is as follows:
<form name="enquiry" id="enquiry" acti ...
|
The .Net Way to get the XML Payload from the Request?
Sun, 16 Dec 2007 20:51:55 -0800 (PST)
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 Request object could b ...
|
Cross-browser Real-time Message, Remote JavaScript Callback, and Monitoring Browser States
Sat, 15 Dec 2007 15:33:20 -0500
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
the same time?
...
|
Work-around for System.StackOverflowException
Tue, 11 Dec 2007 10:06:37 -0800 (PST)
During our migration from "classic" ASP2.0 to ASP.Net, I found that
some of my server-side asp files when changed to ASP.Net would fail to
run. They'd compile just fine, but at run-time they'd fail with this
message: "An unhandled exception of type
'System.StackOverflowException' occured in mscorlib.dll".
Th ...
|
|
|
Running Out of Stack Space?
Tue, 11 Dec 2007 10:02:47 -0800 (PST)
During our migration from "classic" ASP2.0 to ASP.Net, I found that
some of my server-side asp files, when changed to .aspx, would fail to
run. They'd compile just fine, but at run-time they'd fail with this
message: "An unhandled exception of type
'System.StackOverflowException' occured in mscorlib.dll".
Th ...
|
Current DOM element from textRange
Fri, 7 Dec 2007 11:00:00 -0800
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 need the actual nod ...
|
Converting from ASP 2.0 to ASP.Net
Sun, 2 Dec 2007 21:47:54 -0800 (PST)
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 = Server.CreateObje ...
|