all groups > dotnet jscript > august 2003
manual
Posted by Ryan Moore at 8/26/2003 4:21:49 PM
where's a good online manual to jscript (other than the microsoft website
where you can't print the whole thing out)
otherwise, is there a book anyone recommends?
thnx
... more >>
Script in the control ascx
Posted by JMZ at 8/25/2003 4:31:58 PM
I had a script which functionned in a aspx form:
function ShowHide(Checkbox, Div) {
if (Checkbox.checked == true){
Div.style.display='InLine';
} else {
Div.style.display='none';
}
}
Now, one asks me to transform the aspx form into ascx and script does not
function any... more >>
Replace() src
Posted by Emmanuel Soheyli at 8/23/2003 12:21:43 PM
I get information from an outside site by the following code:
<script src="http://www.outside.com/page.asp?id=1"></script>
It generates array 'content with all necessaries information. The problem is
I need several type of information (id=2,3, etc.), and it always generate
the same array con... more >>
Client side script to generate a text file
Posted by Guogang at 8/22/2003 4:37:02 PM
What I need: a button on the page to let user save the content of a table to
a text file (comma separated).
I am wondering if it is possible to use jscript to do all these at client
side?
I know little about JScript, any direction or ideas are appreciated.
Thanks,
Guogang
... more >>
Securing code from public view?
Posted by Tony at 8/18/2003 2:28:29 PM
How would I go about not only hiding the code, but making
the page unaccessible via Frontpage? I'm using a custom JS
that is specific to my project, and don't want it
distributed everywhere.
Thanks!... more >>
How to change VBScript to VB code behind file
Posted by Sean at 8/13/2003 9:20:13 AM
Hi,
I need a pop-up window for user to confirm change. The default button is the
second option (No). As the user only use IE, I think the VBScript is an
option. The following code only works for html button. I wonder how I can
change it to VB code behind file and use a server control.
Thank... more >>
Problem : Works only if I have an alert
Posted by news.microsoft.com at 8/11/2003 10:28:30 AM
I have posted the code below, please help me how can I make the window
object understand the new object created without using alert or
settimeout(). Also How to check a method exists in a object? it works only
if I have a property in that object then its working fine, how to check an
object's me... more >>
2 radiobuttonlists for selection
Posted by sramruttun at 8/6/2003 9:39:32 AM
hi
I have 2 radiobuttonlists in my form both having more or less the same
listitems:
At Design time,
RDLGroup1 (1st radiobuttonlist) has the foll. items:
A1 A2 A3 A4 A5 (A1 is selected)
RDLGroup2 (2nd radiobuttonlist) has the foll. items:
A2 A3 A4 A5 (None is selected)
So at first, if ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
eval
Posted by CGuy at 8/1/2003 1:40:00 PM
Hi,
I have a requirement of using the JScript.NET eval method in my C# code.
Currently, I have a .js file which defines a class and one method that does
the eval and I have compiled this to a dll and is being used in my C# code.
I would like to use Vsa to do this so that I can do it in my ... more >>
|