Tagged Questions
4
votes
2answers
345 views
How does authentication work with ASP.NET (using Live ID and\or Windows Authentication)
I'm primarily a .NET desktop app programmer. Coming into the web world has been difficult. I'm trying to convert one of my Silverlight apps into HTML. But I'm having a hard time figuring out the ...
0
votes
0answers
132 views
Admin Panel like Custom Framework [closed]
I want to Create a Framework , like Admin panel , which can rule almost all the aspects of what is shown on the frontend.
For an (most basic) example: If suppose the links which are to be shown in a ...
2
votes
1answer
557 views
Should I implement BackBone.js into my ASP.NET WebForms applications?
Background
I'm trying to improve my group's current web app development pattern. Our current pattern is something we came up with while trying to rich web apps on top of ASP.NET WebForms (none of us ...
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
226 views
Relevance of Metro to ASP.Net developer?
I am a web developer, working mostly with ASP.Net(webforms + MVC), C#, javascript and so on.
As you know, continuous learning is very important for us, but time is not infinite. I do dabble with the ...
1
vote
1answer
666 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 ...
11
votes
2answers
2k 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 ...
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 ...
1
vote
5answers
914 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 ...
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 ...
1
vote
4answers
622 views
Is there any HTML editor (WYSIWYG editor) which can do all these tasks? [closed]
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 ...
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 ...
7
votes
2answers
723 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 ...