Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )

This is a link to a different site Dynamically Adding Controls to a Web Page
Total Hit (888) You may add controls to a web page dynamically as needed at run time rather than at design time. This short article shows you how.
Rating
This is a link to a different site Mouseover Highlighting and the Repeater Control
Total Hit (870) The Repeater Control is a lightweight control that really comes in handy. In this article we examine one use of the Repeater and show how to implement row highlighting and selection.
Rating
This is a link to a different site Using the ASP.NET Panel Control
Total Hit (969) The Panel Control is so easy to use that I hesitated to even write an article about it. But I have received several questions about it so decided to write the article anyway. The Panel Control is a container that allows you to include other server controls on it. It is primarily used for containing ....Read More
Rating
This is a link to a different site Filter and Sort the DataGrid Using a DataView
Total Hit (533) The DataView class is a filtering and sorting mechanism. To work, a DataView requires a DataTable. The DataView becomes a specific view of the DataTable and, among other things, can be used to filter and sort the DataTable. The best way to explain a DataView is to see it in action, so we will get ri ....Read More
Rating
This is a link to a different site Conditionally Change a DataGrid Column Value
Total Hit (584) There are times when you will need to highlight or otherwise modify the contents of a particular DataGrid row-column value based upon the value in the column. In this example we will select the CompanyName, ContactName, and ContactTitle columns from the Customers table in the Northwind database. Whe ....Read More
Rating
This is a link to a different site Exploring the Internet Explorer WebControls
Total Hit (841) Treeview, Toolbar, and TabStrip controls have been a part of client-server applications for years. They are not as common on the web due to the dhtml involved. Actually, for the most part, Microsoft has implemented dhtml for these controls only if you are running IE 5.5 and above. Downlevel browsers ....Read More
Rating
This is a link to a different site Implement Custom Paging in the ASP.Net Datagrid Control
Total Hit (531) The inbuilt paging mechanism of the ASP.Net datagrid control is convenient, but can be very inefficient. The problem with the inbuilt system is that the entire resultset is gathered again and again with each page change. Assume you have a table with 200 rows in it and that you are displaying 10 rows ....Read More
Rating
This is a link to a different site Add (INSERT) a New Row Using the ASP.Net Datagrid Control
Total Hit (778) In this article we will display both the grid and INSERT facility inside an html table. This will tie the datagrid and the INSERT facility together to make a fairly pleasing presentation. The best way to see how this works is to get right to the code. As with most dotnetjohn articles we will use a . ....Read More
Rating
This is a link to a different site Including a Column Total Line in a DataGrid Control
Total Hit (514) The question is how to display a total line in a DataGrid control. It is quite easy to do by making use of the ItemDataBound event. As usual we will use an aspx page to define our grid.
Rating
This is a link to a different site Including a DropDownListBox in an Editable DataGrid
Total Hit (574) The data choices for some database table columns are relatively fixed. Examples would be countries, states, and counties for instance. In these cases a dropdown list of fixed choices makes more sense than keyboard input where mistakes can be made easily. In an editable datagrid you can include dropd ....Read More
Rating
This is a link to a different site Allow the User to Specify the Number of Rows Displayed in a Paged DataGrid
Total Hit (518) This will be a very short article - more code than anything else. I've been asked several times lately how you can allow a user to specify the number of rows to show in a paged DataGrid. The answer is very simple. It only takes one line of code.
Rating
This is a link to a different site Include a Calculated Column in a DataGrid
Total Hit (516) In this article you will learn how to include a calculated column in a DataGrid. A calculated column generally contains some value calculated from one or more columns of data that are included in the data store. It could be based on multiplying or dividing a column value by some other value, or it c ....Read More
Rating
This is a link to a different site Use the DataList Control to Present and Edit Data
Total Hit (856) The DataList is not as powerful as the DataGrid. It requires more work from you since it has no default data presentation format. However, the DataGrid begins to get very cumbersome as the number of columns of data you present increases. Anything more than half a dozen columns or so and you probably ....Read More
Rating
This is a link to a different site Master-Detail DataGrids in ASP.Net
Total Hit (496) In this article you will learn how to link two datagrids in a master-detail relationship. There is more than one way to accomplish this task. In this article we will implement row filtering to find the detail records corresponding to a master record selected in the master grid. The tables we will us ....Read More
Rating
This is a link to a different site Highlighting Rows in an ASP.Net DataGrid
Total Hit (593) I like the idea of highlighting rows in a DataGrid as the user scrolls the mouse up and down over the grid. The effect can be achieved using several lines of client-side JavaScript, but why do that when two lines of .Net code will accomplish the same thing? The trick is to implement an ItemDataBound ....Read More
Rating
This is a link to a different site Exploring the Calendar Control
Total Hit (895) In this article we will utilize a number of the properties of the Calendar Control to change the calendar's appearance. The default values produce a usable, but not very attractive control. Much can be done to improve its appearance. We will also make use of two of the control's events to determine ....Read More
Rating
This is a link to a different site Control Which Columns are Displayed in a DataGrid
Total Hit (574) This ASP.Net (VB) program allows you to select many, or all of the columns from a database table, but display only certain, specified columns in a DataGrid. It does this by setting the DataGrid AutoGenerateColumns property to false and then using the Columns Collection to specify the columns to be d ....Read More
Rating
This is a link to a different site Build a Web Service and Create a Consumer
Total Hit (905) In this article we will create a guest book web service that will control additions to, and displays from a database table. We will also create a consumer (a regular Web Form) of the web service. The consumer is discussed at the end of the article. Web services look a little strange at first glance ....Read More
Rating
This is a link to a different site .NET Web Services I
Total Hit (946) Microsoft promoted Web Services a great deal with the launch of .NET. This seems to have faded a little with Web Services perhaps not having taken off as much as was thought. The concept of interoperability over the Internet is still a great one however. In this article we'll quickly review the basi ....Read More
Rating
This is a link to a different site Ascending and Descending Sorting of Columns in an ASP.NET DataGrid
Total Hit (803) The DataGrid allows ascending sorting very easily. But we've all gotten used to applications like Outlook which allow two way sorting. Click a column header once and you get ascending sorting, click again and you get descending sorting. We'll see one way to implement it with the datagrid. ....Read More
Rating
This is a link to a different site Including a Data Bound CheckBox in an Editable DataGrid
Total Hit (596) I've had several requests to show how a data bound checkbox could be included in an editable datagrid. This article shows how to bind a bit field from a table to a checkbox in a datagrid as well as how to update the table with changes in the checked state of the checkbox. ....Read More
Rating
This is a link to a different site How to Confirm a Delete in an ASP.NET Datagrid
Total Hit (539) If you are allowing users to delete rows from a datagrid, you may want to give them the chance to confirm the delete first.
Rating
This is a link to a different site Using Templates With the ASP.NET Repeater Control
Total Hit (953) The Repeater control is a lightweight control but has many uses and has become a favorite of mine. Many developers do not realize that you can use templates with the Repeater. It has a limited set of templates, with few properties, but you can make use of them as this article demonstrates. ....Read More
Rating
This is a link to a different site Filtering the DataGrid
Total Hit (539) In this article we will filter the DataGrid on two columns. This adds a little code complexity but is not really very hard to do.
Rating
This is a link to a different site Paging and Sorting in an ASP.NET DataGrid
Total Hit (649) Allowing paging or sorting in a DataGrid is a very simple process. Allowing for both is only slightly more complicated. This article shows you how to do it.
Rating
This is a link to a different site Including a CheckBox Control Inside an ASP.NET DataGrid
Total Hit (541) CheckBox controls can be very useful inside a DataGrid. They make user choices easier in many cases and are not terribly difficult to implement.
Rating
This is a link to a different site Embedding a Detail DataGrid Inside a Master DataGrid
Total Hit (553) This article shows how to display a row of a master DataGrid and then display one or more rows of a detail datagrid on an ASP.NET page.
Rating
This is a link to a different site Hiding and Showing Columns in the DataGrid Control
Total Hit (530) The DataGrid allows you to make columns visible or invisible on demand - even edit and other special columns. This article will show you how it is done.
Rating
This is a link to a different site Implementing Paging in a DataList Control
Total Hit (859) The DataList does not include inbuilt support for paging. By overloading the Fill method of the DataAdapter, however, you can create a paging mechanism for the DataList
Rating
This is a link to a different site Using a ButtonColumn Control in a DataGrid
Total Hit (556) The ButtonColumn Control is one of several controls that can be used within a DataGrid control in ASP.Net. This article demonstates one way to use this control.
Rating


(Page 50 of 133) 3968 Result(s) found  ... 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 ...

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.