Click here to Skip to main content
15,914,905 members

Comments by JR009 (Top 31 by date)

JR009 15-Jul-15 5:41am View    
What you have done so far for this??
JR009 15-Jul-15 4:28am View    
Hi,
You can achieve this from database side. In your database User table you can set a column like 'IsApproved' bit type column. When new user get registered, by default set this column value False(0) for that user and then populate notification to admin that new user registered and if admin approve the user then 'IsApproved' column become True(1). Now on login check if user is approved if true then gets login else not.
JR009 20-Jan-15 2:08am View    
Where you want to add Delete button in table?
JR009 16-Jan-15 2:12am View    
Hi, sorry for late reply. I think you want links with particular label. Then you can try this : $("#result").append("" + resultArr[i].label + "");
This code will set URL in anchor tag href and label to its text.
JR009 16-Jan-15 2:07am View    
What are you trying to say? Do you want to set DateTime in asp:label control? Can u explain some more?