TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
OTP (One Time Password) in Asp.NET
Pintoo Yadav
Apr 22
2015
Code
14.8
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
private
string
generatePassword()
{
int
lenthofpass = 6;
string
allowedChars =
""
;
allowedChars =
"a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,"
;
allowedChars +=
"A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,"
;
allowedChars +=
"1,2,3,4,5,6,7,8,9,0,!,@,#,$,%,&,?"
;
char
[] sep =
{
','
};
string
[] arr = allowedChars.Split(sep);
string
passwordString =
""
;
string
temp =
""
;
Random rand =
new
Random();
for
(
int
i = 0; i < lenthofpass; i++)
{
temp = arr[rand.Next(0, arr.Length)];
passwordString += temp;
}
return
passwordString;
}
ASP.NET
OTP
One Time Password in ASP.NET