| Dynamically calling a function from the client side (5 replies) |
| microsoft.public.dotnet.languages.jscript |
| I want to dynamically check on the client side to see if a control has an onchange event handler and then if so, to call it. Does this sort of functionality exist within javascript ?? It's sort of similar to the SQL's EXECUTE( 'somestring' ) functionality. Thanks, LES |
|
| Raising Application Script Events to Windows Event Log (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| :?: Hello I am doing a Speech Application using MSSASDK,MSS under Windows. I am trying to raise application events to windows event log / trace log. For that I have instrumented the speech application.With that I could raise server side application events like "TraceMessageEvent" for which I put the code in C# file. Now when I am trying to raise client side application events in script file (JScri... |
|
| Script based Menus and server control objects. (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| Provide a layered menu (vertical) using JavaScript and if it overlaps with ASPX controls, the controls overlap and remain opaque over the menu items even if it has transparent option. This holds true of menus with images too. What is the workaround here apart from horizontal menu structure which we already have. I am sure this is an age old problem. Do we have a vaiable solution though? Thanks, Ar... |
|
| eval problem (7 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi all, I am having a problem updating class level variables in eval statements. Take a look at the code: class JavaService { var a: int 0; function Evaluate(evalString : String) { return eval(evalString); } } When I call Evaluate("a 10;"). It does not change a. Any ideas? TIA, Param |
|
| setAttribute and removeAttribute fail? (3 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hello, everyone: I have a html button: id butPause onmouseover onmouseover 'this.style.backgroundImage "url(./Pause glow.jpg)"' style " BACKGROUND IMAGE: url(./Pause noglow.jpg" onclick "playPause()" onmouseout 'this.style.backgroundImage "url(./Pause noglow.jpg)"' it works well untill I wish to change its background, onmouseover and onmouse action after it is clicked. function playPause() { var b... |
|
| Why I can't get xmlhttp.responseBody value? (4 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi everyone: MSDN document says the "xmlhttp.responseBody" method could return a Array.But I can't get anything use this method .Could anyone give me a example on how to use the "responseBody" method? Thks! |
|
| How can i reach function in Web fom via jscript (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi, i created web application(c#). and then wrote jscript function in aspx. How can i access any function in web form with using jscript function? Thanks |
|
| Username or licencename (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi, can anyon tell me a way to read out the current user or the name and the company from your OS licence? Thanks a lot Stefan |
|
| Syntax for accessing controls from javascript using variable names (8 replies) |
| microsoft.public.dotnet.languages.jscript |
| I'd like to use a generic validation function that I pass the control name to and have an alert box come up and then select the text in the text box and return the focus to the textbox if not valid. It's not working correctly and I expect my syntax isn't quite right. Please check it out and let me know what I'm doing wrong. Thanks, John Holmes function validateNumeric(control) { if(isNaN('document... |
|
| Why doesn't JScript.NET have a "main()" function? (entry point) (4 replies) |
| microsoft.public.dotnet.languages.jscript |
| I have asked this question before, and I got my answer, But I was wondering if anyone knows why JScript.NET doesn't have a "main()" function for a global entry point. Like C#. Or is there a way to emulate this? I'd prefer someone from Microsoft answer this question. |
|