(Sheo Narayan) This article descibes how to do partial page refresh using jQuery.
Tag: Development
When should you use the ‘var’ keyword in C#?
(Vulpes) ‘var’ is a contextual keyword that was first introduced in C# 3.0. It’s described as contextual because it’s only a keyword when used in a certain context – in other contexts it can be used as an ordinary identifier.
Custom LINQ Operators, Deferred Execution and Exceptions
The Language-Integrated Query (LINQ) standard query operators that return enumerable sequences use deferred execution but validate any source sequences immediately. Custom LINQ operators should exhibit the same behaviour.
Extending EventEmitter In Order To Create A Response Proxy In Node.js
(Ben Nadel) I’ve been doing a lot of experimenting with Node.js lately and one thing that I thought might be useful would be some additional hooks into the various parts of the HTTP response lifecycle.
Calling a Web Service from the Client Side Using the AJAX Extension Toolkit [Script Manager]
(Pareen Vatani) A proxy class is a script that is automatically generated by the server and downloaded to the browser at page-load time. The proxy class provides a client object that represents the exposed methods of a Web Service. The calls are made asynchronously, through the XMLHTTP object.
ASP.NET MVC Compiled Views – Use Them
(Malcolm Sheridan) Compiled views in ASP.NET MVC aren’t widely known but they’re a feature you should use whenever you build a non Debug version of your website. They check for compile time errors when you compile your website. They’re really useful for non debug versions, so you’d only want to enab
.Net Remoting : Calling remote method using delegates
(Sivaraman Dhamodaran) In this article I explain how to use delegate with the functions exposed by the remote object. Also I will explain how to call those remote object functions synchronously and asynchronously. I do not want to explain threading here.
Using Forms Authentication in ASP.NET MVC Applications
(Bipin Joshi) Most of the real world web applications require security in one form or another. As far as ASP.NET is concerned Forms Authentication is the most popular and common method of protecting your website from unauthorized access.
Node.js Training And Node.js Hosting With Nodejitsu
(Ben Nadel) Over the last couple of weeks, I’ve been playing around with Node.js – a server-side Javascript runtime environment (powered by Google’s V8 engine). My tinkering has been all kinds of fun; but, I wanted to take my understanding to the next level.
ASP.NET MVC 3 Scaffolding Quick Start
(Steven Smith) Using the latest ASP.NET MVC 3 tools, it’s very quick to go from simple C# classes to working data management screens with a generated backing database. This article walks through the basics of getting started with this approach.
