Dynamically adding DropDownList using jQuery

Filed in ASP.NET, JQueryTags: , , ,

In this article I will show you to add DropDownList dynamically in your ASP.NET Application. I am using jQuery script to do this. This article will help you to whenever you want to add the dropdownlist at run time. You need not to add the dropdownlist control on the Page.  

Using Repeater Control in ASP.NET

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

The Repeater control is used to display a repeated list of items that are bound to the control. The Repeater control may be bound to a database table, an XML file, or another list of items. In this article we will see how to bind Repeater control with database table. The Repeater control is mostly [...]

MultiView Control in ASP.NET

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

Sometimes while developing application we need to create a single page that can handle several different tasks. For example you want to create a page with multiple views and only one view can be shown at one time. This method reduce the page redirection in your web application,, because you are using multiple views at [...]

Deleting Multiple Rows from GridView in ASP.NET

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

Gridview control of ASP.NET is used to represent the  information of database in a tabular format. This table format of information is used by the developer so they can access the large amount of  information in minimum time. The operation that can be performed with GridView information is inserting a new information, updating, deleting and [...]

Dynamically Adding TextBox in ASP.NET

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

Everyone of you people are very well known of TextBox Controls in ASP.NET. The TextBox control allow user to interact with your application with inserting some text. Sometime we need multiple TextBox according to our application requirement. Today I will tell you to generate Textbox on your webpage at Runtime. This dynamic functionality increase your [...]

Integrating Google Maps into an ASP.NET Page : Google Maps API

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

Google Map is a web mapping service application and technology provided by Google, free (for non-commercial use), that powers many map-based services, including the Google Maps website, Google Ride Finder, Google Transit,and maps embedded on third-party websites via the Google Maps API. In this article you will see how to integrate the Google Map into your [...]

Disable Right Click on Web Page using jQuery

Filed in ASP.NET, JQueryTags: , , , , ,

This is very simple article that will tell you to disable right click on your web page. This is an ASP.NET Application to prevent right click options from the users. I have used jQuery script to do this.  

How to Implement Google Translator API in ASP.NET

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

This Article you will learn how to implement Google Translator API in your ASP.NET Web Application. Google Translator is used to translate the message or word or some texts from one language to another language. This translator is sometime very useful when you are developing a multi language support application in ASP.NET. To implement Google Translator I [...]

Image Scrolling using jQuery in ASP.NET

Filed in ASP.NET, JQueryTags: , , , ,

Hello Everyone, Today I am going to share a project about scrolling Images in your application. I am using jQuery to do this.  Sometimes we required portfolio on our webapplication’s page. The portfolio like a collection of Images on the webpage. You will get some interesting information to scroll Images using jQuery in this article. [...]

Web Page Validation using JQuery in ASP.NET

Filed in ASP.NET, JQueryTags: , , , , , , ,

jQuery is one of the most popular JavaScript frameworks that have powerful tools for developers to improves the designs integration with web sites and applications. We have discussed earlier about the website Validation. You can validate your web page using the Validator Controls or by writting code. Today I will tell you to validate your [...]