Click here to Skip to main content
15,887,683 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questiongenerating serial number in gridview Pin
Imthu2-Apr-07 2:33
Imthu2-Apr-07 2:33 
AnswerRe: generating serial number in gridview Pin
Smitha Appukuttan2-Apr-07 2:54
Smitha Appukuttan2-Apr-07 2:54 
AnswerRe: generating serial number in gridview Pin
faiqshah2-Apr-07 7:47
faiqshah2-Apr-07 7:47 
QuestionSaving connections & Scope Pin
TimGee2-Apr-07 2:07
TimGee2-Apr-07 2:07 
AnswerRe: Saving connections & Scope Pin
kubben2-Apr-07 3:05
kubben2-Apr-07 3:05 
GeneralRe: Saving connections & Scope Pin
TimGee2-Apr-07 3:14
TimGee2-Apr-07 3:14 
QuestionDeleting registered users Pin
draksa2-Apr-07 1:50
draksa2-Apr-07 1:50 
AnswerRe: Deleting registered users Pin
kubben2-Apr-07 3:10
kubben2-Apr-07 3:10 
There is a aspnet_membership table. Find the user based off email and delete them.
I would delete based off userid
Select * from aspnet_membership where email = 'puttheiremailhere'
Then based off the userid returned
delete from aspnet_membership where userid = 'thisisaGUID'


NOTE if you didn't want to delete the logins, but wanted to disable them there is a IsApproved flag that you can set to 0. This is also the table to check if they typed their password too many times and locked themselves out. There is a IsLockedOut flag as well.

Hope that helps.
Ben

AnswerRe: Deleting registered users Pin
szukuro2-Apr-07 3:58
szukuro2-Apr-07 3:58 
Questionhow to connect ASP.net and COM+ Pin
Sylvester george2-Apr-07 1:33
Sylvester george2-Apr-07 1:33 
QuestionRequired Field Validator Pin
Kushi Bobby2-Apr-07 1:32
Kushi Bobby2-Apr-07 1:32 
AnswerRe: Required Field Validator Pin
icestatue2-Apr-07 3:01
icestatue2-Apr-07 3:01 
QuestionWrong time shown in codeproject Pin
tonymathewt2-Apr-07 0:50
professionaltonymathewt2-Apr-07 0:50 
QuestionHow do i insert new line in a label Pin
www.Developerof.NET2-Apr-07 0:49
www.Developerof.NET2-Apr-07 0:49 
AnswerRe: How do i insert new line in a label Pin
gauthee2-Apr-07 1:24
gauthee2-Apr-07 1:24 
GeneralRe: How do i insert new line in a label Pin
www.Developerof.NET2-Apr-07 2:48
www.Developerof.NET2-Apr-07 2:48 
GeneralRe: How do i insert new line in a label Pin
gauthee2-Apr-07 2:58
gauthee2-Apr-07 2:58 
AnswerRe: How do i insert new line in a label Pin
Paddy Boyd2-Apr-07 2:57
Paddy Boyd2-Apr-07 2:57 
QuestionError reading configuration information from the registry Pin
ravikiranreddydharmannagari2-Apr-07 0:49
ravikiranreddydharmannagari2-Apr-07 0:49 
QuestionURL in action Pin
iamdking2-Apr-07 0:08
iamdking2-Apr-07 0:08 
AnswerRe: URL in action Pin
GgAben2-Apr-07 21:00
GgAben2-Apr-07 21:00 
QuestionHow to Create a Timer Application in Asp.net Pin
Smitha Appukuttan1-Apr-07 23:59
Smitha Appukuttan1-Apr-07 23:59 
AnswerRe: How to Create a Timer Application in Asp.net Pin
Sebastian T Xavier2-Apr-07 0:04
Sebastian T Xavier2-Apr-07 0:04 
GeneralRe: How to Create a Timer Application in Asp.net Pin
Naveed Kamboh2-Apr-07 0:37
Naveed Kamboh2-Apr-07 0:37 
GeneralRe: How to Create a Timer Application in Asp.net Pin
Smitha Appukuttan2-Apr-07 1:24
Smitha Appukuttan2-Apr-07 1:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.