all groups > dotnet jscript > november 2005
Need ideas for sorting a table
Posted by Brian Kitt at 11/29/2005 6:53:03 PM
I have a website that displays data in a table. It takes about 30 seconds to
build the display from the server because of the amount of cpu and data
access needed to build the table. Each row of the table itself consists of a
variable number of elements, including zero or more tables.
My ... more >>
date comparison
Posted by param NO[at]SPAM community.nospam at 11/23/2005 11:19:49 PM
Hi all, what is wrong with this syntax?
var dt1: Date = new Date("12/1/2005");
var dt2: Date = new Date("11/1/2005");
if (dt1 >= dt2)
// do something
TIA!
... more >>
Multiple events with one event handler
Posted by Cleako at 11/21/2005 1:41:02 PM
I am trying to run the following code:
onsubmit="return
ValidateForm(document.AddRepayment.txtDate1,'lblDate1Req');return
ValidateForm(document.AddRepayment.txtDate2,'lblDate2Req');return
ValidateForm(document.AddRepayment.txtDate3,'lblDate3Req');"
I have tried a few ways, one was to inc... more >>
How is JScript differ from JScript.net?
Posted by Ben at 11/18/2005 7:50:01 PM
Hi all,
How is JScript differ from JScript.net? Which is more close to the ecma
standard?
Can the JScript.net do everything that VBScript does in the WSH
environement, ie, automate Windows and other slick stuff VBS can?
Thanks.
Ben
--
... more >>
Pop up without titlebar?
Posted by Jyoti Khetan at 11/16/2005 12:00:00 AM
Hello All!
I have been trying to customize pop up windows for my ASP.NET Page using
Javascript. I want
to have a custom title bar. Is there a way to remove the windows title bar
from the pop up and make it apear as a frameless window?
Also I am using Windows XP with SP1.
If you know a way ... more >>
javascript post
Posted by Steve at 11/15/2005 10:56:02 AM
I am having trouble posting a form through javascript. It seems to post, but
it posts to the directory and not the page. It also does the same if I try
to click a button through javascript (However, if I click the button
directory, it works fine).
I'm using Asp.Net 2.0. Here's the form t... more >>
custom dll version
Posted by param NO[at]SPAM community.nospam at 11/14/2005 9:23:47 PM
Hi all, I have a .js file with some basic code that I am compiling into a
dll using jsc.exe. The problem is this generates at version # of 0.0.0.0.
How can I change this? Also, why no support for Jscript.Net in VS2005?
TIA!
... more >>
IE extension auto-load question
Posted by Jeffery at 11/13/2005 6:38:13 PM
G'Day all,
I have written an extension for IE in JScript.
Is it possible to have the extension execute when the document loads in
the window as opposed to needing the user to activate it?
To achieve a similar result in firefox I simply include the line:
window.addEventListener("DOMContent... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
running from website
Posted by DanC at 11/10/2005 4:40:04 PM
Hallo;
This works perfect after compilation from the commandline.
var objWShell = new ActiveXObject("WScript.Shell");
var objCmd = objWShell.Exec("cscript.exe x:\\sasys\\sasysweb\\sasysdag.js
/?");
while (objCmd.Status == 0)
{}
var strPResult = objCmd.StdOut.Readall();
print(s... more >>
Request.ServerVariables["HTTP_REFERER"].ToString(); issue
Posted by srinivas at 11/8/2005 1:03:33 AM
Hi,
i am a dot net developer.In our site we have a requirement like
url masking.
Example : We have 2 domains like google and srinivas .If we browse the
google domain html page it will show srinivas domain default.aspx page.
For this i used i frame in the test.html page in ... more >>
How to affect a boolean argument defined as a reference
Posted by Ivan at 11/4/2005 2:04:03 AM
Hello.
I have a HTML page with an ActiveX. I have defined and attached an event
handler with a boolean argument:
function eHandler( ... enable_default)
Event in ActiveX object:
event(.... VARIANNT_BOOL* enable_default)
So in a Win32 developing engitnes, if I want to disable default exec... more >>
|