Ajax Asp.Net PasswordStrength Example

PasswordStrength Example using Ajax In Asp.Net.

In this example i'm explaining how to use PasswordStrength Control of AjaxControlToolkit for asp.net 3.5.

For this Add latest version of AjaxControlToolkit.dll in BIN folder of application and place one textbox and passwordstrength control on the aspx page.

Add below mentioned CSS style in stylesheet.css for strength bar to show up.




CSS StyleSheet

.BarIndicatorweak
{
    color:Red;
    background-color:Red;
}
.BarIndicatoraverage
{
    color:Blue;
    background-color:Blue;
}
.BarIndicatorgood
{
    color:Green;
    background-color:Green;
}

.BarBorder
{
    border-style:solid;
    border-width:1px;
    padding:2px 2px 2px 2px;
    width:200px;
    vertical-align:middle;
}
Now configure the passwordstrength control as shown below.

<form id="form1" runat="server">
<div>
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" 
                          runat="server">
</asp:ToolkitScriptManager>

<asp:TextBox ID="TextBox1" runat="server" 
             TextMode="Password">
</asp:TextBox>
        <br />
<asp:PasswordStrength ID="PasswordStrength1" 
                      runat="server" 
         TargetControlID="TextBox1" 
         RequiresUpperAndLowerCaseCharacters="true"
         MinimumNumericCharacters="1" 
         MinimumSymbolCharacters="1" 
         MinimumUpperCaseCharacters="1" 
         PreferredPasswordLength="8"
         DisplayPosition="RightSide" 
         StrengthIndicatorType="Text">
</asp:PasswordStrength>
        <br />
        <br />
<asp:TextBox ID="TextBox2" runat="server" 
             TextMode="Password">
</asp:TextBox>
<asp:PasswordStrength ID="PasswordStrength2" 
                      runat="server" 
        TargetControlID="TextBox2" 
        RequiresUpperAndLowerCaseCharacters="true"
        MinimumNumericCharacters="1" 
        MinimumSymbolCharacters="1" 
        MinimumUpperCaseCharacters="1" 
        PreferredPasswordLength="8"
        DisplayPosition="RightSide" 
        StrengthIndicatorType="BarIndicator" 
        BarBorderCssClass="BarBorder" 
StrengthStyles="BarIndicatorweak;BarIndicatoraverage;BarIndicatorgood;">
</asp:PasswordStrength>
    </div>
    </form>

Read more...

GTU 7 Semester paper for computer engineering



 GTU  7 th Sem computer engineering  Que paper :

Regular exam paper: Nov- 2011

Advance .Net Technology              :   170707
Advance Java Technology             :   170703
Advance Computing Technology   :   170704
Mobile Computing                          :   170702
Compiler Design                             :   170701

Remedial exam paper :  May-June 2012

Advance .Net Technology              :  170707
Advance Java Technology             :  170703 
Advance Computing Technology   :  170704
Mobile Computing                          :  170702
Compiler Design                             :  170701

Read more...

Customer relationship management free download project

CRM, or Customer Relationship Management, is a company-wide business strategy designed to reduce costs and increase profitability by solidifying customer satisfaction, loyalty, and advocacy. True CRM brings together information from all data sources within an organization (and where appropriate, from outside the organization) to give one, holistic view of each customer in real time. This allows customer facing employees in such areas as sales, customer support, and marketing to make quick yet informed decisions on everything from cross-selling and upselling opportunities to target marketing strategies to competitive positioning tactics.

Read more...

CRM For Call Center GTU final year project

This is a web based Solution for Call Centers.Complete Customer And call center Representative management is provided in the solution.

TECHNOLOGY   :  ASP.NET

by.. Hardik  H.  Kothadia   R.K.University  Rajkot...
                                      >>Download Here<<

Read more...

Student Management System for final year student

Student Management System , this project is developed using C#.Net and Microsoft Access Driver. In this project user can add and view student records. Student Management System is a software application to manage an educational facility of teachers and students.
Front End : C#. NET 2005
Back End : Microsoft Access Driver 2003

Project Title : Student Management System

A student information system  is a software application for institutes, colleges, schools to manage student data. Student Management System deals with all kind of student details, academic related reports, college details, course details, curriculum, batch details and other resource related details too. It tracks all the details of a student from the day one to the end of his course which can be used for all reporting purpose, tracking of attendance, progress in the course, completed semesters years, coming semester year curriculum details, exam details, project or any other assignment details, final exam result; and all these will be available for future references too.

Read more...

Bank management system VB project download

Bank Management System in VB  IN this project manage a customer. Detail about Transaction.
also manage employee detail.
by Hardik H. Kothadia
     R.K.University Rajkot.....

Read more...

Write a Console Application to create shape class & derive circle & rectangle from it to demonstrate the method over-riding concept


Module Module1
    Class Shape
        Public area As Double
        Public color As String
        Public Overridable Sub calcArea()
            Console.WriteLine("inside the get area method of Shape class")
            Console.WriteLine()
        End Sub
        Public Sub printArea()
            Console.WriteLine("the area of the Shape is: " + area.ToString())
        End Sub
    End Class
    Class Circle
        Inherits Shape
        Public radius As Double
        Public Overrides Sub calcArea()
            area = 3.1415 * radius * radius
        End Sub
    End Class
    Class Rectangle
        Inherits Shape
        Public width As Double
        Public height As Double
        Public Overrides Sub calcArea()
            area = width * height
        End Sub
    End Class
    Sub Main()
        Dim sap As New Shape
        sap.calcArea()
        Dim cir As New Circle
        Console.Write("Enter the radius of circle :")
        cir.radius = Convert.ToDouble(Console.ReadLine())
        cir.calcArea()
        cir.printArea()
        Dim rect As New Rectangle
        Console.Write("please enter the height of rectangle :")
        rect.height = Convert.ToDouble(Console.ReadLine())
        Console.Write("please enter the widht of rectangle :")
        rect.width = Convert.ToDouble(Console.ReadLine())
        rect.calcArea()
        rect.printArea()
        Console.ReadLine()
    End Sub
End Module


Read more...
Related Posts Plugin for WordPress, Blogger...

Engineering material

GTU IDP/ UDP PROJECT

GTU IDP/ UDP PROJECT

Patel free software download

  © Blogger templates The Professional Template by Ourblogtemplates.com 2008

Back to TOP