SQL Programmers Blog


  

Need help with Microsoft SQL Server? Ask our Experts, or simply Email your query.

About Sql Server Programmers

Our clients can be found both locally in the Chicagoland area and throughout the country. We have over 18 years of experience and are extremely proud of our track record of successfully assisting hundreds of our clients to improve their productivity while focusing on cost.

Microsoft Certified Partner

  

SQL Server Programmers Blog

Author: host Created: 7/16/2010 8:38 AM
Articles pertaining to .NET, including C# and VB.NET

While developing an application, there is a necessary of showing and hiding the particular controls during the run time. Today’s tip is how to show or hide a Jquery controls dynamically.

Read More »

There are different ways split the string based on the delimiter. Here is one of the examples in C# to split the string. Place two textboxes in the form. Rename the first textbox to txtString and second textbox to txtDelimited.

Read More »

There are different methods to load a data in the dropdown control. Some of the common methods that are used are xml, hashtable, arraylist and database.

Read More »

In an asp.net application while using grid view to display a data there will be a requirement of exporting Grid view data to excel file. The following code will be used to export the grid view data to excel.

Read More »

Usually you can able to sort a grid view by clicking the header of the grid. If you want to sort the grid view dynamically, without changing the store procedure of the binding object, the following code will help.

Read More »

It is clumsy and horrible to see the broken image (Red Cross) in the website. This will happen due to loading problem, server problem or image doesn’t exist etc. To avoid this problem we can hide the broken image or we can load any default image.  Let us see how we can do this using jQuery in asp.net.
 

Read More »

The AccessDataSource controls facilitate retrieval of data from MS Access Databases (.mdb). These controls acquire all the properties of the SQLDataSource control. Let us see how we can retrive data in Asp.net 4.o using Accessdatasource control.

Read More »

Asp.net web user controls are very similar to asp.net web page and it is suitable for Rapid Application Development. User controls are the containers where you can put the Asp.net Web server controls.

Read More »

The function constructor and destructor are used to invoke or destruct class object. This article explains the constructor and destructor function with examples in asp.net.

Read More »

In this article we have explained about viewing the crystal report using pull model and push model. Kindly go through the Part - 1 article before reading this.

Read More »

Crystal Reports is a report designing tool which allows you to retrieve and format a result set, either from a database or from other data sources. This tool includes many different components that assist in creation of readable and effective reports.

Read More »

In this article I have explained the new features being integrated with the language c# 3.0.

The features that we discussed are Implicitly typed local variables, Anonymous types, Extension methods, Object and collection initializers, Lambda expressions, Query expressions, Expression Trees

Read More »

A class or a struct defined inside another class or struct is called a nested type. In the following example the Employee class is defined inside the Company class
 

Read More »

RegisterClientScriptBlock and RegisterStartupScript both used to register and execute JavaScript code after the page finished loading, or any submit operation is performed by the user.

Read More »

Visual Studio .NET 2005, ASP.NET 2.0, shipped with a lesser-known functionality called a “Partial Class”. A Partial class is a class defined in 2 or more files. Each source file contains a section of the class which will combine when the application is compiled.

Read More »