Tagged Questions
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;
2
votes
2answers
353 views
Scalable/Reusable Authorization Model
Ok, so I'm looking for a bit of architecture guidance, my team is getting a chance to re-cast certain decisions with a new feature that we're building, and I wanted to see what SO thought :-) There ...
1
vote
1answer
59 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 ...
1
vote
1answer
188 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
170 views
How do I combine Script# and Web Controls?
I currently have a Web Application project in VS2010. Each control (in *.ascx files) is contained in it's own separate folder along with the web services used by that control (in *.asmx files) and ...
0
votes
1answer
71 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
1answer
54 views
How to use Asp.Net Ajax with ScriptSharp?
Recently we have decided to update our project to the latest version of Script#. We are heavily using MS Ajax library, but in the current Script# release there is no Sys namespace anymore.
Could ...