0
Hi, you must be using Select * from Jobseeker table, that y its coming, just join your Login table with the Jobseeker table and Filter with the JobsseekerId,
Select * from table name where.......................
You are not using where clause, coz of that its coming all.
Thats all
0
Hi,
In this case, if you have to only show the one user at a time, i think you don't need to use the data grid. you show with the help of some other records. if this not solve your problem, please describe it.
0
Hi,
You can use sql membership for this purpose and then show and hide or mangage users.
Then you can display or hide controls like i.e.
if (User.Identity.IsAuthenticated == true){
if (Roles.IsUserInRole("JobSeeker") == true)
{
label1.visible = true;
}else{label1.visible=false;}
}
You can find some of best articles on how to use membership provider at:
http://aspnet.4guysfromrolla.com/default.aspx
Regards