Control

Posts filed under Control

Wizard Control In ASP.NET

Filed in ASP.NET, Web AppTags: , , ,

Wizard Control of ASP.NET help us to create a step by step wizard in our website. The Wizard control used when we want a big number of entries from user. Mainly we use this control in signup process of our site. In this article we will learn to use the Wizard control as well as [...]

Binding Combobox Control With Multiple Columns of Database Table

Filed in ASP.NET, Desktop AppTags: , , , , ,

Previously we have discussed that how to bind Combo box control with Database Table’s column in WinForm. Today I will tell you that how to bind a Combo box control with multiple columns of a particular table. The way of binding is very simple. We are not writing extra code or not writing any complicated code to [...]

TreeView Navigation Control in ASP.NET

Filed in ASP.NET, Web AppTags: , , ,

Previously we have discussed about Navigation controls in ASP.NET. Also we saw that how to use the SiteMapPath control for navigation between pages. Today we are going to use another Navigation control. The control is TreeView control. TreeView control is also used to navigate from one page to other page in an ASP.NET web application. [...]

How to use RadioButton Controls as RadioButtonList Control in ASP.NET WinForm

Filed in ASP.NET, Web AppTags: , , , , ,

ASP.NET provide some list controls to select single as well as multiple values from a specific group. The RadioButton control is one of them. Previously we have learned how to work with CheckBox Control and CheckBoxList Control. The Radio Button List is also used to get a value from the list. But the main diference [...]

How to Use SiteMapPath Control in Web Applicatioin

Filed in ASP.NET, Web AppTags: , , , , , ,

The SiteMapPath control basically is used to access web pages of the website from one webpage to another. It is a navigation control and displays the map of the site related to its web pages. This map includes the pages in the particular website and displays the name of those pages. You can click on [...]

How to Fetch the Checked Value in RadioButtonList Control in WinForm

Filed in ASP.NET, Desktop AppTags: , , , , ,

In this article I will tell you that how to use the RadioButton control as a RadioButtonList control in ASP.NET Winforms. As you know that there is no specific control in place of RadioButtonList. So we use the RadionButton control and do some code so that we can use the RadioControl like a RadioButtonList control. [...]

Bulleted List Control in ASP.NET

Filed in ASP.NET, Web AppTags: , , , , ,

As you are a web developer you are very well known about HTML for web designing. While developing a web application we need to use many of HTML tags several times. These tags can be used inside the source code of the aspx page or in style (.css) files. Sometimes we need to use the [...]

AdRotator the Rich Web Control in ASP.NET

Filed in ASP.NET, Web AppTags: , , , , ,

The basic purpose of the AdRotator is to provide a graphic on a page that is chosen randomaly from the group of possible images. We can also say that every time the page is requested an image is selected at random and displayed. One use of the AdRotator is to show banner-style advertisements on a [...]

TreeView, GroupBox Control and MDIParent Form in C#.NET

Filed in ASP.NET, Desktop AppTags: , , , , , , , , , ,

In this article I will show how to use TreeView Control in MDIParent Form. I have used C# language to do this. As you all know that TreeView Control in C#.NET Provide the Tree Look for the nodes. In this project I am binding the Window Application Form inside the GroupBox Control. So in this project [...]