Change password from an HTML page (directly in IE/CHM/HTA) | ActiveX/VBSScript registry editor
ActiveX NT User account manager
Export MDB/DBF from ASP
Url replacer, IIS url rewrite Active LogFile Email export ActiveX/ASP Scripting Dictionary object
| ||
| Sample for UserManager.Server.ChangePassword |
| Change password from an HTML page (directly in IE/CHM/HTA) | |
|---|---|
Source code for this Script:
<form Name=Password>
Old password : <input Name=OldPassword>
New password : <input Name=NewPassword>
<input type=button onclick="ChangePassword()" Value="Change Password">
</form>
<script language=vbscript>
Function ChangePassword()
Set Server = CreateObject("UserManager.Server")
Server.Select ""
Server.ChangePassword document.forms.Password.OldPassword.Value, document.forms.Password.NewPassword.Value
MsgBox "Password was changed to " & document.forms.Password.NewPassword.Value
End Function
</script>
| |