Click here to Skip to main content
15,885,366 members
Articles / Web Development / HTML

Multi-User Login and Authentication Code

Rate me:
Please Sign up or sign in to vote.
3.52/5 (20 votes)
9 Feb 20064 min read 155.4K   4.8K   68  
New user registration, user login, user password retrieval, user account information, active users on site information, site administrator facilities, and a lot more..
<!--RAHUL MAHAJAN -->
<!--SCRIPT DESIGNED AND DEVELOPED BY RAHUL MAHAJAN -->
<!--MULTI-USER LOGIN WITH DATABASE CONNECTION-->
<!--FEEL FREE TO MAKE CHANGES ACCORDINGLY-->
<!--If you face any problem, Please mail me anytime-->
<!--E-MAIL:mahajan_rahul@hotmail.com-->
<!--Date: 5th May, 2005-->
<!--Please rate it on www.planetsourcecode.com-->

<%

' ASPMail sender
' on error resume next
Select case emailtype
case  "ASPmail"
		Set objNewMail = Server.CreateObject("SMTPsvg.Mailer")
		objNewMail.FromName = FromName
		objNewMail.FromAddress = FromEmail
		
		' the mail server goes below
		objNewMail.RemoteHost = MailServer
		objNewMail.AddRecipient YourEmail, YourEmail
		objNewMail.Subject = Subject
		objNewMail.BodyText = Body
	
		SendOk = objNewMail.SendMail
		


case  "cdonts"  
		Set objNewMail = Server.CreateObject ("CDONTS.NewMail")
		objNewMail.BodyFormat = 1
		objNewMail.MailFormat = 0
		'on error resume next '## Ignore Errors
		objNewMail.Send FromEmail, YourEmail, Subject, Body
		
		


case  "jmail" 

   set objNewMail = server.createobject("JMail.SMTPMail")
   objNewMail.Sender = FromEmail
   objNewMail.ServerAddress = MailServer
   objNewMail.AddRecipient   YourEmail
   objNewMail.Subject  = Subject
   objNewMail.Body = body
   objNewMail.execute
   
 

case "ASPEmail"
Set objNewMail = CreateObject("Persits.MailSender") 
   objNewMail.From = FromEmail
   objNewMail.Host = MailServer
   objNewMail.AddAddress  YourEmail
   objNewMail.Subject = Subject
   objNewMail.Body = body
   
   objNewMail.Send 
   
case "OCXmail"
Set objNewMail = Server.CreateObject("ASPMail.ASPMailCtrl.1")
   SendEmail =  objNewMail.SendMail(MailServer, YourEmail, FromEmail, Subject, body) 
   
Set objNewMail = Nothing


end select

'response.write err.number
%>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
This is Rahul Mahajan from New Delhi, India. I'm Master Of Computer Application and currently working as Sr. Web/Graphics Designer/Developer and Presentation Specialist. I'm very much interested in developing ASP and JavaScript codes. There are lots of codes and script developed by me available online including developerdex.com, a1vbcode.com, programmerheavens.com, asp101.com, 1javastreet.com, 1aspstreet.com, pscode.com, 1cplusplusstreet.com, 1perlstreet.com, javacode.net, developerfusion.co.uk etc... Winner of Superior Coding Contest at Planetsourcecode.com.
Areas of specialization - HTML, DHTML, Java, JavaScript, ASP, .Net, VB, VB.Net, CSS, MySql etc.

Comments and Discussions