Tagged Questions
13
votes
8answers
4k views
Should I use ScriptSharp
I am developing my first ASP.NET MVC application and I beleive that Script# can help me a lot. But it cannot find the resource necessary to support my development.
I could not find The codeplex site;
...
6
votes
9answers
1k views
Why Haven't GWT- and Script#-style Frameworks Become Dominant?
With GWT, we can write code in Java and have it translated to JavaScript code.
With Script#, we can write code in C# and have it translated to JavaScript code.
It sounds GWT and Script# will save web ...
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
146 views
ScriptSharp: myObject.prototype = new myOtherObject;
How can I reproduce this in ScriptSharp (C#):
myObject = function(input) {
}
myObject.prototype = new myOtherObject;
3
votes
1answer
219 views
Maturity of Script# (in comparison to GWT)
I already spent some time developing small projects with the GWT and I recently discovered Script#.
Now I am curious about how mature this toolkit is.
I am especially interested in the opinion of ...
3
votes
3answers
477 views
Can I use GWT (or Script#) to write individual functions in Java (or C#) and compile them to JavaScript?
I understand the purpose of GWT, but I'm wondering if I can use it to compile a few functions from Java to JavaScript just to make sure that I don't have to maintain the same code in two different ...
2
votes
2answers
51 views
Why does unescaping a string mess up my regex?
I'm trying to generate javascript code similar to this
function ParseJsonDate(input) {
var tmp = +input.replace(/\/Date\((-?\d+)\)\//, '$1');
jsonDate = new Date(tmp);
return jsonDate;
}
...
2
votes
1answer
41 views
How well do Script# numbers map to Javascript?
I've been playing with Script#, and I was wondering how the C# numbers were converted to Javascript. I wrote this little bit of code
int a = 3 / 2;
and looked at the relevant bit of compiled ...
2
votes
1answer
145 views
Declaring a javascript object literal in Script#
I am trying to replicate a jquery ajax call in Script# and in the data option I am passing an object literal
{ id: target.data("id"), name: newName}
I am trying to reproduce this in Script#, but I ...
2
votes
2answers
871 views
What is Microsoft's GWT solution for .NET?
I like GWT but I prefer to use ASP.NET MVC for my projects, however, these two are not integrated and require me to write my code in two different platforms and two languages. Does Microsoft have any ...
2
votes
4answers
907 views
GWT vs. ScriptSharp Pros and Cons
We have determined it's too difficult for us to maintain the bulk of javascript we need to write full-scale "single page" javascript "applications". Relying on programming conventions still has left ...
2
votes
4answers
248 views
Pushing javascript too hard with Script# and javascript?
So I have been playing around with a home project that includes a lot of js. I having been using Script# to write my own library etc. Personally I wouldn't write a lot of js if I didn't have a tool ...
1
vote
2answers
96 views
Script# licencing
Can I use script# in a commercial web project? And can I sell my product which includes script# files. I keep in mind .js files (mscorlib.js).
1
vote
1answer
119 views
Iterating over properties of an object in Script#
What Script# code would generate the following JavaScript?
var obj = eval('(' + jsonText + ')');
for (key in obj) // what C# code translates to this iteration?
{
// ...
}
thanks.
1
vote
1answer
186 views
How do I use the onBeforeUnload event with Script#?
I'm using the Script# library with ASP.NET. I want to listen and respond to the onBeforeUnload browser event.
I am currently intercepting the event like this:
Window.AttachEvent( "onbeforeunload", ...
1
vote
1answer
336 views
How to generate minified javascript with Script#?
I am testing Script# and its manual tells me that it has a "Release" mode, where the code is minified for performance. But I couldn't find how to enter this mode. Anyone knows?
Update BenS has found ...
0
votes
1answer
68 views
ScriptSharp seems to be incompatible with ComponentArt Treeview, how to fix it?
I have a page that uses a TreeView control from ComponentArt.
If I add a reference to mscorelib.debug.js to that page I get this error:
Uncaught TypeError: Cannot call method 'apply' of undefined ...
0
votes
2answers
121 views
Using ScriptSharp to code YUI controls
I am in the process of choosing ScriptSharp for coding all my javascripts. I already use JQuery and it is great that there is built-in support for this.
But what about YUI? I need it in particular ...
0
votes
0answers
146 views
script# vs. il2js [closed]
I'm a .net developer and I'm interesting in writing a cross platform/Mobile application. so I came to the conclusion to write it in javascript,
So I start to look around for something similar to ...
0
votes
2answers
357 views
Script# preprocessor directives?
does anyone know the preprocessor directives that are available for use in the script.jst file. I am trying to write the filename of the generated js file to the generated .js file.
ie. script.js or ...