Tagged Questions
4
votes
3answers
402 views
Sharing JavaScript code between .NET desktop and browser
I have a set of core, complicated JavaScript data structures/classes that I'd like to be able to use both in the browser as JavaScript and run on the desktop with .NET 3.5. Is it possible to compile ...
2
votes
2answers
90 views
JScript.NET vs ECMA
I am programming a small console app that is an intelligent front-end to a set of batch files with ungodly parameters.
I have decided to use JScript.Net for this though it may be ill advised compared ...
2
votes
3answers
498 views
Focus Next Element In Tab Index
I am trying to move the focus to the next element in the tab sequence based upon the current element which has focus. Thus far I have not turned up anything in my searches.
function OnFocusOut()
{
...
2
votes
3answers
78 views
Why is there a conflict between variables and functions of the same name in JScript?
I have a variable named age and a function named AGE. Ignore the problem I am having with JScript beign case insensitive at the moment, i.e. age(dob) and AGE(dob) both work...
Why does JScript try ...
0
votes
1answer
39 views
Using RegExp.$1 in Fiddlers CustomRules.js
I've been using Fiddler for a few days now, extending CustomRules.js with my own logic.
I tried to grab some information out of the response body using regular expresions
This is what I copied from ...
0
votes
0answers
74 views
How to pass mp3 url to media player when click the play button in data list view?
i has a datalist view of mp3 songs with play button, so my need is when i click play button that song have to play. please help me how to do??
datalist code is given below:
<asp:DataList ...
0
votes
1answer
58 views
parsing jscript within sql server 2008
Is there a way to parse jscript which is stored in a server table. I am looking for something like eval(jscript function).
0
votes
0answers
43 views
Does jscript.NET implement the ECMAScript 5 standard?
Does jscript.net implement EcmaScript 5, and if not, what EcmaScript version does it implement?
0
votes
1answer
96 views
JScript that would allow me to add together values in table cells, which values to add will depend on which option is selected from a dropdown list
Basically I have drop down lists for building a PC as such in my view (MVC 2), for all you non-MVC folks, the below inline view code will yield a standard dropdown list(s):
<%: ...
0
votes
1answer
118 views
Writing apps in JScript 5.5 instead of JScript.NET
As some of you may know JScript.NET adds quite a few features to the common JavaScript language... it adds some class syntax, some type identifier etc etc..
The main reason I use JavaScript is ...
0
votes
2answers
354 views
How can I port a Javascript AES library to .NET to ensure interoperability?
Background:
I have data that I'm encrypting with javascript on the client side that needs to be decrypted on the server side.
As far as I can tell, the javascript AES library I'm using does not ...
0
votes
1answer
412 views
Includes and persistent storage in CustomRules.js of Fiddler
I've been using Fiddler for a few days now, extending CustomRules.js with my own logic. However, the file is becoming quite heavy (it's fairly heavy to begin with). I'm not very familiar with .NET or ...