M
Mike
Hi all,
In my recent ASP.NET 2.0 appl, I need to verify that the supplied email address is valid or not. So, here's my situation:
- In my <profile> area, I created <isVerified> property.
- Suppose a new user has been created. I set the profile.isverified to false.
OnCreatedUser event I'll send him an email (to the supplied email address) to verify their email address with a link in it to an ASPX page that'll do the verification, e.g: verify.aspx?u=aUserName
- On page_load of verify.aspx, I want to change the <isVerified> property to true and set the <isApproved> to true, so he can start log in.
How to do this? I'm using ASP.NET 2.0 (VB.NET) and MSSQL 2K for membership database.
Thanks in advance,
Mike
In my recent ASP.NET 2.0 appl, I need to verify that the supplied email address is valid or not. So, here's my situation:
- In my <profile> area, I created <isVerified> property.
- Suppose a new user has been created. I set the profile.isverified to false.
OnCreatedUser event I'll send him an email (to the supplied email address) to verify their email address with a link in it to an ASPX page that'll do the verification, e.g: verify.aspx?u=aUserName
- On page_load of verify.aspx, I want to change the <isVerified> property to true and set the <isApproved> to true, so he can start log in.
How to do this? I'm using ASP.NET 2.0 (VB.NET) and MSSQL 2K for membership database.
Thanks in advance,
Mike