重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
使用控件,验证里的RegularExpressionValidator,双击或者拖到页面,在其属性列表设置其ControlToVlidate属性
创新互联建站主营新吴网站建设的网络公司,主营网站建设方案,app开发定制,新吴h5成都微信小程序搭建,新吴网站营销推广欢迎新吴等地区企业咨询
为你要输入邮箱地址的控件,再设置ValidationExpression属性为Internet电子邮件地址就可以了,你还可以设置errormessage属性,为邮箱格式错误时显示的错误提示信息。
在Identity2.0里面封装了IIdentityMessageService接口,可以用来发送接收邮件。
看看
Imports System.Threading.Tasks
Imports System.Security.Claims
Imports Microsoft.AspNet.Identity
Imports Microsoft.AspNet.Identity.EntityFramework
Imports Microsoft.AspNet.Identity.Owin
Imports Microsoft.Owin
Imports Microsoft.Owin.Security
public function SendAsync(message as IdentityMessage) as task
dim credentialUserName = "邮箱登录名"
dim sentFrom = "你的邮箱地址"
dim pwd= "邮箱登录密码";
dim client as new System.Net.Mail.SmtpClient("smtp服务器地址")
client.Port = 25'mtp邮件服务器端口
client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network
client.UseDefaultCredentials = false
dim credentials as new System.Net.NetworkCredential(credentialUserName, pwd)
client.EnableSsl = true
client.Credentials = credentials
dim mail as new System.Net.Mail.MailMessage(sentFrom, message.Destination)
mail.Subject = message.Subject
mail.Body = message.Body
return client.SendMailAsync(mail)
end function
'有两种办法:
'第一种需要提供用户名和密码连接到指定的邮箱上,既危险又低效,但是保证可以验证。
'这个技术上需要用到 Socket、SMTP 和 POP3 通信,这里写不完。
'第二种:由于连接到指定的邮箱太复杂,用个东西就可以验证邮箱格式的合法性。
'注意,是格式,并不会真的查找有没有。
Private Sub Command1_Click()
If Text1 Like "*@*.com" Or Text1 Like "*@*.net" Then
MsgBox "有效"
Else
MsgBox "无效"
End If
End Sub