Tagged Questions
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 ...
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
127 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
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
2answers
920 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
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;
...
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
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
2answers
165 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
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
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 ...