(Suprotim Agarwal) I have absolutely no hesitation in stating that jQuery is the most popular JavaScript and AJAX framework available. Now-a-days, developers caught by this wave, tend to ease their client-side development by using jQuery wherever and whenever they can. I came across a similar requir
Tag: Development
Parameters for ObjectDataSource in ASP.NET 2.0
(John Charles Olamendy) This article is intended to show how to invoke server-side methods (expecting input parameters) stored in the SQL Server 2005 Management System using the ObjectDataSource components. I’m going to illustrate how to pass values for these input parameters, that is, these values
A Gentle Introduction to .NET Code Generation
(Nick Harrison) I have a dream that one day the computer will write its own code. Sure, this may be farfetched but why not?
LINQ the Bridge between the world of Objects & the world of Data
(Abdulla Hussein AbdelHaq) This article will not make you an expert in LINQ, you can find thousands of articles that talk about LINQ in details, but you can say that this article is like developer to developer tech-talk.
Handling Concurrency with Entity Framework
(Peter Vogel) To effectively use Entity Framework (EF) in ASP.NET, we need to handle two problems: tracking changes and handling data concurrency. The tracking changes problem occurs because EF’s ObjectContext keeps track of what data was originally retrieved from the database and what’s been change
Basic Concepts for Working with LINQ
(Anne Boehm) As its name implies, LINQ, or Language-Integrated Query, lets you query a data source using the Visual Basic language. Before you learn how to code LINQ queries, you need to learn some concepts related to LINQ, such as how LINQ is implemented and what the three stages of a query operati
Customizing GridView control for data modifications
(John Charles Olamendy) This article is intended to illustrate how to customize GridView controls for data modification. We’re going to change the standard BoundFields and CheckBoxFields (which don’t offer customization features) for alternative extensible Web controls. We’re going to walk through a
Handling Empty Data in an ASP.NET Repeater control
(Suprotim Agarwal) The GridView has an EmptyDataText property or the that lets us handle EmptyData. However the Repeater has no such property or template. In this short article, we will see how to adopt a simple technique to handle empty data in an ASP.NET Repeater control withou
Robust, Reusable Drag-and-Drop Behavior in Silverlight
(Charlie Robbins) As the richness of Internet applications continues to grow through technologies such as Silverlight, AJAX, and Flash, the adoption of common desktop user interface (UI) paradigms within these applications continues to increase. The most obvious paradigm perhaps is drag-and-drop beh
Tip#64:Did you know … How to convert a GridView column from asp:BoundField to asp:TemplateField in Design View?
(Bala Chirtsabesan) Assume that you already have a data source SqlDataSource1 that binds to a simple query returning some details from the Customers table.
