(Stephen Walther) I’m teaching several JavaScript and ASP.NET workshops over the next couple of months (thanks everyone!) and I thought it would be useful for my students to have a really easy to use JavaScript reference. I wanted a simple interactive JavaScript reference and I could not find one so
Tag: Development
Compiled Queries in LINQ
(Dhananjay Kumar) There may be scenario where we need to execute a particular query many times and repeatedly. LINQ allows us to make this task very easy by enabling us to create a query and make it compiled always. We call this type of query a compiled query.
JsonValueProviderFactory in ASP.NET MVC 3
(David Hayden) Here is a quick post in my series of ASP.NET MVC 3 Tutorials.
Using Stored Procedure in LINQ
(Dhananjay Kumar) We have a strored procedure as below. It is a very simple SP returning grades of the student. This stored procedure name is GetStudentGrade.
Microsoft .NET Framework 4.0 Task Parallel Library Continuations
(Jeffrey Juday) If you’ve been following my Task Parallel Library (TPL) articles you’re probably already aware that Microsoft has made a hefty investment in Parallel Programming. An earlier article covered the task class, Understanding Tasks in the .NET Framework 4.0 Task Parallel Library.
Introducing Command Query Responsibility Separation (CQRS)
(Steven Smith) The Command Query Responsibility Separation (CQRS) pattern is an enterprise pattern that can be used to increase the performance, scalability, and reliability of distributed applications that may experience heavy load. This article briefly describes the pattern, along with some of the
Pass Values from CodeBehind to JavaScript and From JavaScript to CodeBehind in ASP.Net
(Satheesh Babu) Passing values from server to client side for some javascript manipulation and it’s vice versa is one of most recurring tasks we will come across when developing web applications.
ASP.NET and jQuery to the Max
(Gianluca Negrelli) The UpdatePanel represents Microsoft’s main interpretation of AJAX techniques. The UpdatePanel’s indubitable merit is that it brings the magic of AJAX in every day’s programming work for any ASP.NET programmer. But now, three years after it was born, the UpdatePanel shows all its
ASP.NET MVC 3 Beta: Built-in support for charts
(Gunnar Peipman) ASP.NET MVC does not have built-in support for chart control and that’s why I worked out my own solution to make ASP.NET MVC support chart control. With ASP.NET MVC 3 we will get official support for charts right out of the box. In this posting I will show you how to use charts in A
Hosting the Razor Engine for Templating in Non-Web Applications
(Rick Strahl) Microsoft’s new Razor HTML Rendering Engine that is currently shipping with ASP.NET MVC previews can be used outside of ASP.NET. Razor is an alternative view engine that can be used instead of the ASP.NET Page engine that currently works with ASP.NET WebForms and MVC.
