1
Answer

birthdate

vikas kanani

vikas kanani

12y
904
1
how to search  employee birthdate on datetime picker using month and date on date time picker.


Answers (1)
0
Arshad

Arshad

NA 1.3k 42.7k 16y
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
Pankaj Gupta

Pankaj Gupta

NA 118 0 16y
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
Ghaffar Abdul

Ghaffar Abdul

NA 11 0 16y

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