Script# exists to bring "the power and productivity of C# and .NET tools" to JavaScript development. It was authored by Nikhil Kothari, a Microsoft employee, and is reputed to be used extensively in Microsoft projects such as Windows Live and Office 365. The project is partially open source ...
15
votes
8answers
5k 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;
...
3
votes
4answers
1k 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 ...
15
votes
6answers
6k views
What advantages can ScriptSharp bring to my tool kit?
Currently we use jQuery to add RIA goodness to our apps, but recently we have been implementing the Coveo Search engine into our Sharepoint portal and found that ScriptSharp was used in their product. ...
7
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 ...
2
votes
1answer
81 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 ...
1
vote
1answer
81 views
Script# and Asp.Net updatepanels compatibility
This is a simple question, NikhilK answered to this question:
"Script# doesn't support ASP.NET Ajax anymore"
Does that mean that we can't use Asp.net UpdatePanels (which need a ScriptManager) in the ...
5
votes
3answers
378 views
Script# and compiler problems
I've just come across a pretty strange problem with VS2010 and Script#, which most of the time I am able to re-create.
In my simple scenario I have 2 projects in my solution; a standard Asp.Net MVC2 ...
4
votes
2answers
760 views
How do I use knockoutjs with ScriptSharp?
As I have just learnt the Script# that I don't know how to use knockoutjs with ScriptSharp. I tried to read through the KnockoutAPI but I am still confused how to write even just a view Model ...
3
votes
1answer
135 views
New version of Script# 0.6 and ASP.NET Ajax - where is MicrosoftAjaxExt.js?
we use the ASP.NET Ajax (ie. <asp:ScriptManager />) on our pages and we wish to use Script# for generating js files with a client side functionality. The problem is when we include mscorlib.js ...
3
votes
1answer
246 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 ...
0
votes
1answer
78 views
Script# - Getting the latest build to compile
I've downloaded (cloned the repository) of script# from https://github.com/nikhilk/scriptsharp
Only I can't figure out how to get the source to compile.
I have installed ScriptSharp 0.7.3.0 as it ...
4
votes
3answers
427 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
2answers
98 views
Specifying jQuery Alias in Script#
Is there a way to specify the jQuery alias Script# uses when generating JavaScript? For example, if we expect our version of jQuery as “$myJQuery” using noConflict(true), is there a way to get Script# ...
2
votes
1answer
162 views
Unit testing c# code in a ScriptSharp project
Im using ScriptSharp to create a RIA app.
Works nice besides some oddities.
However finding and fixing problems using Firebug isn't really convinient.
Since scriptsharp also delivers a Dll I was ...
2
votes
3answers
418 views
Share code between website/web application project and Script#/ScriptSharp
I added a Script# project to my website project and created a small sample library with two classes.
Now I want to use these classes from the website code. In this case, I created a simple object ...
1
vote
1answer
87 views
“Inject” an operator into an existing type
Scriptsharp uses mscorlib 0.7.0.0 which has an implicit operator System.Number on an int32. I understand the reason why it's there although I imagine that the compiler can handle the conversion in ...
1
vote
1answer
114 views
Using Script# with SharePoint 2010
Has anybody managed to successfully use Script# v 0.7.3 along with SharePoint 2010?
From my experience it breaks standard SharePoint functionality (like adding a web part to webpart page) after ...
1
vote
2answers
83 views
A question about remove the get and set value in data of ajax, using Script#
As now I have started to use Script#, I tried to send a data package to server via ajax:
jQuery.AjaxRequest<RespondPackage>(url, new jQueryAjaxOptions("type", "POST", "dataType", "json", ...
0
votes
2answers
60 views
How to send data using jQueryObjet.load(url, data) in script#
I have this function in javascript:
$('#myElement').load('/some/url/', { parameter1: 0, parameter2: 1 });
How can I translate it in Script# ?
At the moment, I am unable to pass the data parameter. ...
0
votes
1answer
183 views
ScriptSharp jQueryApi.inArray implementation difference (bug in scriptsharp?)
jquery documentation defines its inArray function as follows:
jQuery.inArray( value, array )
Returns: Number
Description: Search
for a specified value within an array
and return its ...
0
votes
0answers
209 views
Does someone have experience with Script# [closed]
Possible Duplicate:
Should I use ScriptSharp
Hi
I'm looking for some information and user experience on Script#. I don't know much about JavaScript and I've always avoided it.
Is it reliable ...