(Satheesh Babu) Building a search page is one of the very common and repeated tasks we do in any data driven websites. To do this, we will build a select query with where clause based on the search parameter supplied through the input controls on the page. With the introduction of .Netframework 2.0,
Tag: Development
Tip 41 – How to execute T-SQL directly against the database
(Alex James) Sometimes you’ll find you need to issue a query or command that the Entity Framework can’t support. In fact this problem is common to most ORMs, which is why so many of them have a backdoor to the database.
Localize ASP.NET MVC 2 DataAnnotations validation messages
(Maarten Balliauw) Living in a country where there are there are three languages being used, almost every application you work on requires some form of localization. In an earlier blog post, I already mentioned ASP.NET MVC 2’s DataAnnotations support for doing model validation. Ever since, I was won
Quickly Determine Whether a Column Is Fully Visible in a DataGridView
(Srinath MS) It’s easy to determine whether a DataGridView column is invisible—just check its Boolean Displayed property. However, the Displayed property returns True even when the column is only partially visible in the screen.
Implementing KeyBoard Shortcuts on an ASP.NET Hyperlink Control using jQuery
(Suprotim Agarwal) Popular Web apps like Gmail and Windows Live Mail feature Keyboard shortcuts, which help you save time by executing common operations using the Keyboard, without having to switch between the keyboard and mouse. In this short article, I will demonstrate how to use jQuery to impleme
How To Sort and Group Items in a WPF ListBox: Part 2
(Ged Mead) In the first part, I outlined the sample application and said that it: –will create a collection of Person objects and databind them to a ListBox. –will use very simple DataTemplates to format two properties of the Person class – FullName and Status. –will use a GroupStyle Head
Dynamic Data Retrieval
(Peter Vogel) One of my clients gave me a reporting page from Hell: The user would be able to select the database they were drawing data from, the fields that would be displayed and the criteria for selecting records. Normally, in using the ASP.NET DataSources, I can configure the DataSource and, at
Tracking Request Volume Based On IP Addresses In ColdFusion
(Ben Nadel) This much less a “how to” post and much more just a “thinking out loud” post. I don’t really know if I even like what I came up with; but, I figured I would put it out here in case it lead to some good conversations. In the wake of some spam comments on my site, I started […]
.NET Naming Conventions
(Josh Twist) I often get asked about the Naming Conventions I adhere to when writing code (C#, naturally).
How to use DetailsView control without SQLDataSource
(Raj Kumar) This article will show you how to use DetailsView control without using of SQLDataSource data control.
