Editor Control in ASP.NET AJAX

Filed in Ajax, ASP.NETTags: , , , , ,

HTMLEditor is an ASP.NET AJAX Control that allows you to easily create and edit HTML content. Various buttons in toolbar are used for content editing. You can see generated HTML markup and preview document. The Editor control is very useful when you are trying to develop a blogging site. The Editor control has some other [...]

Validate Userid in your Web Application

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

This article will help you to validate your userid. While developing a Web Application every developer need to provide this technique for the users of that application. They need to provide a unique userid and password to every users so that they can access only their account. In this project I will tell you that [...]

Rating Control in ASP.NET

Filed in Ajax, ASP.NETTags: , , ,

While using various Internet sites, you guys see sometime that there is an option to give your ratings for that particular site or particular topic on that site. This Rating is very useful to measure the site or any particular product. Today in this article I am going to tell you that how to create [...]

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 [...]

Develop your Own Web Browser

Filed in ASP.NET, WPFTags: , , ,

In this example I will show you to develop your own browser in ASP.NET Application. This is a WPF Application. To develop your own web browser you need to use “WebBrowser” control of WPF Application. I have used some limited features of this control, but you can extend its features according to your requirement. This [...]

Using Literal Control in ASP.NET

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

This Article will help you to learn about Literal control in ASP.NET. The Literal control is similar to a Label control. The most important thing about this control is that the Literal control is programmable. It doesn’t add any HTML element to the web page. Also we can not apply style to this control.  

Create a Table Programmatically in ASP.NET

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

This Article will help you to create a new table programmatic in your asp.net application. As you know that we use table control to show our data sometimes. and we use the table control to use this. In this article I will tell you that how can you add a table by writing code in [...]