Tagged Questions
1
vote
4answers
366 views
Most fitting Javascript framework for C# developers? [closed]
Being a .Net developer for years, practicing SOLID principles, TDD, and other Clean Code practices - I am facing now a new project (greenfield) with strong client side code.
I wish to address my ...
6
votes
2answers
401 views
Is server validation necessary with client-side validators?
I recently created a .net web app that used over 200 custom validators on one page. I wrote code for both ClientValidationFunction and OnServerValidate which results in a ton of repetitive code.
My ...
1
vote
1answer
278 views
Webservice Return Generic Result Type or Purposed Result Type
I'm building a webservice which returns JSON / XML / SOAP at the moment.. and I'm not entirely sure which approach for returning results is best.
The Client Consuming the Services will generally be ...
1
vote
1answer
314 views
How to use the clients webcam for recording through a website?
I am building a site and idealy I would like to record the users interaction via their webcam. How do I intergrate webcam recording into my site. I have seen It done with flash. But Im trying to avoid ...
1
vote
1answer
667 views
Print three copy of asp.net page two copy with diffrent color [closed]
I have an ASP.Net page. I want to print that page 3 times, 2 copies should carry "COPY WORD, as a watermark".
I have written this code code to print three copies, but it's asking confirmation about ...
12
votes
6answers
8k views
Advantages and disadvantages to using XAML/C# or HTML5/JavaScipt for Metro apps? [closed]
I was just wondering if there are any major advantages or disadvantages to using either XAML/C# or HTML5/JavaScript for Metro Apps.
7
votes
2answers
4k views
Webkit as GUI in .Net/Mono
I want to make a cross platform application, which will also have a website where the desktop applications (Windows, iOS, Linux) will talk to the server and keep the users data in sync.
So far the ...
2
votes
2answers
880 views
What do you suggest for cross platform apps, including web
I have always preferred cross platform development over most other concepts as long as I can remember. Which is one of the reason I never got into .Net. Currently, I use php/javascript/python as my ...
0
votes
1answer
280 views
How should I setup a UI for editing a binary tree?
I need to allow the user to create an binary tree. I have a Backbone Model populating properly from the database, the problem I am stuck on is how do I setup the ui elements in a way that is fairly ...
25
votes
4answers
935 views
Javascript modularity, server based MVC & business reality
I understand this is a very broad question, but I have worked with various aspects of this problem individually and am struggling to bring all the concepts and technologies together.
I'd like to ...
11
votes
6answers
16k 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 ...
0
votes
3answers
209 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 ...
12
votes
6answers
1k views
Why is closure important for JavaScript?
C#'s lambda expression also has closures but is rarely discussed by the C# communities or books. I see far more JavaScript people and books talk about its closures than they do in the C# world. Why is ...
3
votes
4answers
1k views
More Powerful language for client-side web apps: JavaScript or C#?
Concerns over Microsoft's future with Silverlight, HTML 5 and Windows 8 have led me to reconsider plans to develop a business app over the next few years in Silverlight.
It can be difficult to define ...
3
votes
1answer
1k 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 ...