Tagged Questions

4
votes
2answers
456 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 ...
2
votes
2answers
105 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
432 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
80 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
932 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
53 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
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
0answers
111 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
65 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
363 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
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 ...