Posted on: 4/8/2015 4:23:57 PM | Views : 621

hello everyone. there is a registration form where an email is sent to a user for activation of account. im unable to redirect to the link. it was working previously even though its on local host i dnt know what happen im unable to access the link. can someone plz help
my code is as follows:
Sub email() Try Const dummy As String = "abc@gmail.com" Dim message As String message = "Dear " + txt_s_Fname.Text + "," + vbCrLf + vbCrLf message += "Thank you for registering. Your account has been Activated." + vbCrLf + vbCrLf message += "Please click on the link below to login to our Website." + vbCrLf message += "http://localhost:54592/staff_log.aspx" & txt_s_Fname.Text Dim mm As New MailMessage(dummy, txt_s_email.Text) mm.Subje ...

Go to the complete details ...