Tag: Development

Community

Insider: A Debugging Story

(Peter Vogel) I’ve been doing a lot of LINQ programming recently, so my next column is probably going to be called something like “Stupid LINQ Tricks”. Because LINQ, like SQL, is a declarative language you don’t get a lot of code to look at when your code isn’t doing what you want.

Community

What is PostBack in ASP.NET

(Prabhu Raja) PostBack is the name given to the process of submitting an ASP.NET page to the server for processing. PostBack is done if certain credentials of the page are to be checked against some sources (such as verification of username and password using database). This is something that a clie

Community

Implementing the New Skip List

(Jim Mischel) The hard work in building a better skip list was in creating the underlying data structure. Changing the original skip list implementation so that it uses the new infrastructure is pretty easy. The algorithms for adding, searching, and removing are essentially the same.