Active Script in C# .NET

F

Fernando

Was active script support added to .NET ( i didnt find in the docs ) or
would i have to use interoperability stuff ? Or even betters , is there a
new way do add scripting to you desktop application?

Thanks.
 
P

Pavel Minaev

Was active script support added to .NET ( i didnt find in the docs ) or
would i have to use interoperability stuff ? Or even betters , is there a
new way do add scripting to you desktop application?

There is. Have a look at JScript.NET (comes with .NET runtime), or
IronPython.
 
F

Fernando

i think this jscript.net is related to asp.net server side script. I want
the users of my desktop software to be able to write scripts to interact
with the software, like in ActiveScript.
If anybody has an example of this using jscript.net, please let me know.
By the way i could not find much info on jscript.net on msdn. seems dead.

bye.

"Pavel Minaev" <[email protected]> escreveu na mensagem
Was active script support added to .NET ( i didnt find in the docs ) or
would i have to use interoperability stuff ? Or even betters , is there a
new way do add scripting to you desktop application?

There is. Have a look at JScript.NET (comes with .NET runtime), or
IronPython.
 
P

Pavel Minaev

i think this jscript.net is related to asp.net server side script.

It is not. It is a general-purpose scripting language for .NET, and
can be used on server and desktop alike. No additional components are
needed - it comes with .NET Framework.
If anybody has an example of this using jscript.net, please let me know.
By the way i could not find much info on jscript.net on msdn. seems dead.

http://msdn.microsoft.com/en-us/library/72bd815a.aspx

Also, don't forget about IronPython:

http://www.codeplex.com/IronPython
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top