Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
11answers
2k views

What are people using JScript.Net for?

I'm interested to know who uses JScript.Net and for what sort of applications. Whenever I'm reading MSDN .Net documentation, I always notice the JScript samples but in all the years I've been a C# dev ...
6
votes
5answers
1k views

Can JScript.NET be used to script a .NET application?

Since MS appears to have killed Managed JavaScript in the latest DLR for both server-side (ASP.NET Futures) and client-side (Silverlight), has anyone successfully used non-obsolete APIs to allow ...
4
votes
2answers
428 views

ListView programatically added columns shows type of item

I got a ListView in another assembly and want to add a column to it. The items in the listview are objects of a class in that assembly. When I add a column like this var col : GridViewColumn = new ...
4
votes
1answer
231 views

Referencing and using JScript.NET “functions only” exe assembly

1. Compiled Assembly from JSC I've compiled what is intended to be client-side JavaScript using the JScript compiler (jsc.exe) on the server side in an attempt to make something that can be tested ...
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 ...
3
votes
1answer
125 views

How to implement IObjectSafety programmatically in JScript.NET

tldr; How to mark a JScript.NET dll as safe for scripting? Consider this JScript.NET library (helloworld1.js): package helloworld1{ class test1 { public function test1run(){ return 'This ...
2
votes
2answers
88 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
471 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
2answers
399 views

List of computers in Active Directory that are online

I'm using this snippet of code to output a list of all the computers on my network (the language is jscript.net, but it's just a small manipulation of C#). var parentEntry = new DirectoryEntry(); ...
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 ...
2
votes
2answers
919 views

.Net Scripting Engine (C#) - Is there some sort of “header file” or “dll references file” for .Net languages?

I'm making a small scripting engine in C# and I was wondering, is there some sort of #compiler directives or some sort of other header-like file I can compile with my script files to define what ...
1
vote
2answers
43 views

C# & VSAEngine - Calculating a string expression with a exponent?

i've a prob here, so i need a help:) When i'm calculating expression like this "(10.5 + 3.5 / 2) * 2" with jscript vsa engine, it's ok, but now i 've a question... if in the string like above, i want ...
1
vote
0answers
81 views

Can I use .NET classes from JScript.NET without import statement?

How can I use classes without having to import the namespace in JScript.NET? E.g. I want to be able to write System.Windows.Forms.MessageBox.Show("Ping"); instead of: import System.Windows.Forms; ...
1
vote
1answer
264 views

Which version of Visual Studio Express for JScript .NET?

Which version of the Express edition of Visual Studio can I use to work with Windows Forms programs written in JScript .NET? I did a quick search and I can see versions for Visual Basic, Visual C# and ...
1
vote
1answer
94 views

JScript .NET error

I'm trying to compile the program listed here: http://www.webreference.com/js/column117/index.html However, every time I try I get an error: error JS1259: A referenced assembly depends on ...
1
vote
4answers
1k views

Autoproxy configuration script parsing in .Net/C#

In order for my application (.Net 1.1) to use the system configured proxy server (trough a proxy.pac script) I was using an interop calls to WinHTTP function WinHttpGetProxyForUrl, passing the ...
0
votes
1answer
38 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
73 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
57 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
42 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
58 views

Resolving Microsoft.jscript.resources.dll fails

I have code that creates and invokes methods from Microsoft.Jscript objects. I'm registering on the ResourceResolve event on the AppDomain (fired when the resources for a specific assembly cannot be ...
0
votes
2answers
64 views

Dictionary object syntax?

I'm having trouble figuring out the syntax for a JScript .NET dictionary object. I have tried private var myDictionary: Dictionary<string><string>; but the compiler complains that it's ...
0
votes
1answer
141 views

Parse text file as list of variables?

I have a text file (currently in CSV format) as follows: RACE,"race_human" GENDER,"male" AGE,30 ALIGNMENT,"align_lawful_good" DEITY,"Old Faith" However, I want to interpret the text file as if it ...
0
votes
1answer
221 views

Load application icon through resource

Here's what I've done: I created a resource.resx file using my IDE (SharpDevelop) and added an logo.ico to it. The resource.resx file looks something like this: <data name="logo" ...
0
votes
1answer
323 views

Elmah throws exception when accessing Context.Request.ServerVariables

I'm using Elmah to log exceptions for my website, everything seems to be all working fine until one day I noticed that the 500 server errors are not being caught properly. I'm using following script ...
0
votes
2answers
162 views

JScript.NET Design IDE

I'm currently using JScript.NET for a small UI application. The problem is that my Visual Studio Express doesn't support JScript.NET for designing the UI. Is there a free IDE that I can use to design ...
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
377 views

Why does JavaScriptSerializer return the wrong answer when called from JScript.NET?

In ASP.NET/C#: <%@ Page Language="C#" %> <%@ Import Namespace="System.Web.Script.Serialization" %> <% JavaScriptSerializer jss = new JavaScriptSerializer(); string[] fruits = new ...
0
votes
1answer
271 views

Cast to delegate type fails in JScript.NET

I am trying to do async IO using BeginRead() in JScript.NET, but I can't get the callback function to work correctly. Here is the code: function readFileAsync() { var fs : FileStream = new ...
0
votes
3answers
123 views

JScript.NET private variables

I'm wondering about JScript.NET private variables. Please take a look on the following code: import System; import System.Windows.Forms; import System.Drawing; var jsPDF = function(){ var state = ...
0
votes
2answers
352 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
411 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 ...
0
votes
1answer
3k views

When creating a JavascriptConverter, how to return an array?

I'm trying to write a custom JavascriptConverter for use with a WebService I'm writing. I have to write a custom converter, because Microsoft.JScript.JSObject doesn't support IDictionary, so it gets ...
0
votes
2answers
180 views

Using JScript.NET to create WCF services?

I am trying to create a WCF service in JScript.NET. (I know, I should do it in C# or VB.NET, but humour me, please.) Has anyone done this before? I can create .asmx web services, but I'm not sure how ...
0
votes
1answer
157 views

JScript.Net compiler error

I create a .js file containing print("Hello World!"); I save it as hello.js I open the Visual Studio 2008 Command Prompt jsc + Enter jsc \out:hello.exe C:\path\to\my\file.js + Enter I get an ...
-1
votes
4answers
158 views

asp.net IndexOf problem

var araj=["1","2"]; var idx=Array.IndexOf(araj,"1"); Doesn't work as expected... Why, and what next? EDIT: it is jscript in asp.net (so the friend who won't open account here says)