I dunno if this is possible or not, but at my school, they have a form that enables you to reset passwords and create users by submitting a form on the internet (localhost:81/resetpass.aspx). As the file extension is .aspx, I assumed ASP.NET. The form is basic - you type in the username into a textbox and press reset, and that user's password is reset to "password". Is this posible with ASP or ASP.NET? Thanks, BP
Hi, yes, it would be using an ASP.NET webpage and using methods/ objects in the System.DirectoryServices namespace (Google those last three words) by integrating with Microsoft Active Directory (Google that too). I hope this is a start Also see this link http://www.codeproject.com/cs/system/everythingInAD.asp Have fun!
Thank you very much But following the link you gave me, do I make that in Visual C# or in Visual Web Devloper? Or can I just make it in Notepad++ and compile it? And if you can do it in Visual Web Developer, do you make it a new ASP.NET website or service, and how do you include it in the file? Thanks, BP