|
|
(jQuery) .nextOrFirst() function guarantees a selection
by Matt on 2010/06/28 at 1:26 pm
The .nextOrFirst() jQuery function/plugin detailed here works as an alias for .next(), except when there are no more objects for .next() to select. When this happens, .nextOrFirst() will automatically select the first element from within the same parent (essentially treating the first element as “next”). Continue Reading this Article >>ASP.NET Tutorial 7: Intro to .NET Forms
by Matt on 2010/03/22 at 2:12 pm
This article introduces the use of forms in an ASP.NET webpage. Before you begin, you should already have a basic understanding of HTML form elements. If you need a refresher, we will briefly discuss the use of classic form elements on an ASPX page, but the focus of this article will be on the use special ASP.NET form elements. Continue Reading this Article >>
• Posted under Tutorials and tagged with @Complexity: Beginner, ASP.NET, Forms, Visual Studio, Visual Web Developer
• Comments (0)
AJAX Tutorial 0: Core AJAX Concepts
by Matt on 2010/02/09 at 3:44 pm
This article introduces basic JavaScript concepts, and builds on those concepts to explain how AJAX is used and, more importantly, why. This is not an in-depth look at JavaScript, nor is it intended to be. As with all tutorials on this site, you should already be familiar with X/HTML and CSS, and have a general idea of what JavaScript is and how it’s used. Continue Reading this Article >>
• Posted under Tutorials and tagged with @Complexity: Beginner, AJAX, DOM, JavaScript, jQuery
• Comments (0)
ASP.NET Tutorial 6: Outputting Data to the Webpage
by Matt on 2010/01/13 at 12:24 pm
This article explains the three primary methods of outputting data onto a webpage from the code-behind class: Labels, Literals, and the Response.Write() method. This article is also useful for gaining a basic understanding of how .NET handles communication between elements on the ASPX webpage and the C# code-behind class. Continue Reading this Article >> |