How to implement PasswordStrength Extender Control in ASP.NET Website

By // No comments:
The PasswordStrengthExtender Control targets a TextBox control that is used for entering Passwords.When user starts typing the text in text box ,this control calculates the strength of the text using different specified properties.Here i have set different properties such as TargetControlID, DisplayPosition ,  PrefixText,StrengthIndicatorType, MinimumLowerCaseCharacters, MinimumNumericCharacters, MinimumSymbolCharacters, PreferredPasswordLength, TextStrengthDescriptions, StrengthStyles.You can see it in source file.
First,You have to  install Ajax Toolkit in your visual studio.
There are some steps to implement this whole concepts in asp.net website 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 Web form (Default.aspx)--> drag and drop TookitScriptManagertext box and button controls as shown below:-
3

Introduction of ADO.NET Entity Framework with Examples

By // No comments:
We have already Learned how to access data from database through the concepts of ADO.NET, SQL and Language Integrated Query(LINQ) from any applications.
Why do we use ADO.NET Entity Framework in Data centric Applications:-
There are following reasons to use ADO.NET Entity Framework in Data centric application generally.There are some advantages and disadvantages as given below.
Suppose ,we want to develop any database for a project first earlier,a conceptual schema has to be designed based on which the logical schema or model is designed to develop a project.we  first had to design a conceptual model on a paper or a whiteboard.This was a time consuming and error-pron process,where the developer had to remember every details of data on which the conceptual model was based.We could not even work with entities in our application in the executable form.
3

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
Powered by Blogger.