i downloaded "AjaxControlToolkit.Binary.NET3.5" for Ms Visual DEVELOPER 2008, and added it to Visual Developer ,
i created new tab, seleted choose items, browse, and picked ajaxcontrolToolkit.dll , and it displayed alot of Ajax tools , so i tried password strength but it isn't working, only textbox displays on screen but no signs of PASSWORD STRNGTH
here is my code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ajaxtester.aspx.cs" Inherits="ajaxtester" %><%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title>Untitled Page</title></head><body><form id="form1" runat="server"><div><asp:ScriptManager ID="ScriptManager1" runat="server" /><asp:TextBox TextMode="Password" ID="TextBox1" runat="server" Width="233px"></asp:TextBox><cc1:PasswordStrength ID="TextBox1_PasswordStrength" runat="server" Enabled="True" TargetControlID="TextBox1" DisplayPosition="RightSide" StrengthIndicatorType="BarIndicator" BarBorderCssClass="barBorder" BarIndicatorCssClass="barInternal"></cc1:PasswordStrength></div></form></body></html>