Tagged Questions

8
votes
2answers
764 views

Where does jQuery fit-in with frameworks like JavaScriptMVC, BackboneJS, SproutCore and Knockout?

I have been happily using JQuery for the last 2 years and have been quite sucessful creating some really cool functionality with it...so I am very comfortable with it. I also beleive the future of ...
8
votes
6answers
2k views

How should data be passed between client-side Javascript and C# code behind an ASP.NET app?

I'm looking for the most efficient / standard way of passing data between client-side Javascript code and C# code behind an ASP.NET application. I've been using the following methods to achieve this ...
1
vote
0answers
184 views

How to develop “Client script library” for ASP.net controls and how do these work? [closed]

I have been working on .Net platform for 2 years and right now I am working on DevExpress controls for 6 months. All these control have client-side Events which are under some ClientScript ...
0
votes
5answers
505 views

ASP vs javascript vs jQuery vs User Controls vs AJAX

Increasingly when developing sites I find myself utilising more client side technologies such as Javascript, jQuery and AJAX. For three different pages I measured the size of the HTML sent to the ...
1
vote
3answers
106 views

Pattern checking .Check for incorrect operators in an expression [closed]

In an expression , How to 1.Check if operators and operands are correct or not. 2.check if brackets match or not. Example 1: (a+b)- has a one extra operator How do i confirm that the number of ...
3
votes
2answers
275 views

Is there any HTML editor (WYSIWYG editor) which can do all these tasks?

I want an HTML editor on the .NET platform which: Support RTL languages (like Arabic and Persian) Be a rich text editor (many formatting tools, not few) Have client-side events Have server-side ...
1
vote
1answer
696 views

How to generate nonce for Ajax web requests

As many of you know WordPress uses "secret key" like thing for every AJAX request. Making each request unique and also 'somewhat' secure (just a step ahead than nothing). How would I implement the ...
6
votes
2answers
454 views

Moving all UI logic to Client Side?

Our team originally consisted of mostly server side developers with minimum expertise in Javascript. In ASP.NET we used to write a lot of UI logic in code-behind or more recently through controllers ...