How to make the Corners of any ASP.NET controls Round using Concepts of Ajax

By // No comments:
This is very useful for the asp.net developers to make the asp.net controls round.For this , RoundedCornersExtender control is used to make the corners of any asp.net controls round.This control adds a background panel to an asp.net control so that the control,when rendered on a web page appears with rounded corners.There are some properties of this RoundedCornersExtender as given below:-
  • TargetControlID:- It sets the ID of the control whose corners are to be modified.
  • Corners:-It is helpful to sets the corners of the target control,which you want to round. 
  • Radius:-It sets the radius of the rounded corners by default this value is 5 pixel.
You have to install AjaxToolkit in your visual studio before use   RoundedCornersExtender control.
Step 1:- First open your visual studio-->File-->New-->Website-->Select Asp.net Empty Website-->OK -->Open Solution Explorer Window -->Add a New Web Form(Default.aspx)-->First Drag and drop AjaxToolKit and Panel Control-->After that inside Panel Control,drag and drop Text Box and Button controls as shown below:- 
3

How to implement ConfirmButtonExtender Control on ASP.NET Website easily

By // No comments:
Hi Friend , Today we will learn about ConfirmButtonExtender Control.This control displays a message to the user at the click event of the Button control. Here You will ask for the confirmation when the user clicks the button to fire some event.This popup will help users to correct the errors in the form if any.In this application,when you click the submit button,a message appears with the Confirmation dialog box.You can use your custom dialog box also. 
There are some properties of ConfirmButtonExtender Control as given below:-
  • TargetControlID:-It is helpful to set the ID of the Button control to which the extender control attached.
  • ConfirmText:-It sets the text that is displayed whit in the confirm dialog box.
  • DisplayModelPopupID:-It sets the ID of a ModalPopupExtender control to use as a confirm dialog box. 
  • OnClentCancel:-This specifies the client-side script that executes when the cancel button is clicked in the confirm dialog box.
  • ConfirmOnFormSubmit:- It determines,whether or not the confirm dialog box should wait when the form submits to display.
3

How to use ListSearchExtender control on ASP.NET Web page using concepts of Ajax Technology

By // No comments:
Hi Friend,Today we will learn "How to Implement ListSearchExtender control on asp.net website". This control allows you to perform an incremental search for the desired items in the DropDownList or List Box control by typing a stream of texts.This control is very helpful, if you have more values (items) in your database.Using this control ,you can easily find the data by typing the word incrementally.This is generally used in filling Form's websites.
There are some properties of this control as given below:-
  • TargetControlID:-It sets the ID of the List Box or DropDownList control to which the extender control is attached.
  • PromptText:-It is helpful to sets the message that is displayed when the List Box or DropDownList control receives focus. 
  • PromptPosition:- It is helpful to determine the position of the message relative to the target control.It can be either Top or Bottom.The default position is Top.
  • QueryTimeout:-It sets the time that resets the search query just after the timeout and no match found.
  • QueryPatten:-It specifies how the typed characters should be used inn the search query.
  • IsSorted:-It determines whether or not the items added to the list should be sorted.
3

How to Localize the Static Content (Copyright and Disclaimer Information) in a ASP.NET Web Application

By // No comments:
Hi Friend, You already know,we can generate resources for server control properties by using implicit and explicit localization expressions.To implement localization concepts in a web application,we need to localize the following elements:-
  • HTML Control 
  • Static Content
HTML Control :-
HTML Controls can not be localized using implicit or explicit expression,unless they are running on the server.If we want to run HTML control on the server, we have to to include the runat ="server" attribute in the @page directive, After the HTML controls are marked as server controls,local resources are automatically generated for the localizable properties,such as for the Tool Tip and Text properties of the controls. Now We can be bound HTML server controls using implicit or explicit expressions concepts.
Static Content :-We can use the localization expressions concepts to localize the properties of controls used on a web page.You already know ,There are some static contents used on ASP.NET web application,such as Copyright information or Disclaimer information..NET Framework  is allowed to localize the static contents of the web page,such as <Localize runat = "Server"> tag.We we can implement both concepts in a ASP.NET web application easily as given below:-
3

How to Implement Global resources concepts in asp.net web applications using Explicit Localization Expression

By // No comments:
Hi Friend, I have already explained, How to use local resources in asp.net web applications using implicit localization Expression. Today, we will learn about Global resources in asp.net web applications.This localization expressions are automatically generated when resources are created using explicit loalization.You need to use explicit localization in asp.net web pages to localize large text messages,in addition to the controls and labels that are localized.
There are some steps to implement this whole concepts as given below:-
Step 1 :- First Open Your Visual studio -->File-->New -->Web Site--> Select ASP.NET Empty Website --> OK--> Open Solution Explorer window--> Add a New Page (Default.aspx)-->Right-click on Project -->select Add ASP.NET Folder-->Press  App_GlobalResources as shown below:-
3

How to implement Application Localization concepts in An ASP.NET Web Application with an Example

By // 1 comment:
This Localization Concepts is more important for any asp.net web applications.There are many people live in different countries in the world,they are using different languages and Browsers to access the web informations from their PCs (Personal computers).They generally want to read and Understand the web pages in their own languages. Suppose An user is accessing informations form Germany,its browser default language will be German(de-GE).He want to translate the web page in German language so that he can easily read and understand the information.To overcome this problem ,Microsoft has developed the Application Globalization Concepts so that any asp.net web applications can support different languages instead of English language.To support Browser comparability we have to create a separate resource file (Local Resources ,Global Resources) for German language.You can create Resource file in either the App_LocalResources folder or the App_GlobalResources folder of a web application. To implement the Culture and UICulture concepts of an asp.net web application,we generally uses two resource files, This is also knowns as Imlicit Localization Expressions concepts in ASP.NET Web applications.
3
Powered by Blogger.