the below code giving the error like missing assembly reference or name space
please tellme how to use it.
thanks in advance
Code:
private ImageVerification v = new ImageVerification();
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ToString());
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
btnSubmit.Attributes.Add("OnClick", "JavaScript:return ClientValidations();");
v.SetRandomPassword(7, false); // set the random password
}
}