Click here to Skip to main content
15,894,180 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how use field from datagridview to pick a value... I need to pick value of data do compare with actual date

ex :

if date of datagridwiew - actual date < 10 then

MsgBox ("You have 10 days to use this")

end if
Posted

1 solution

on row command event

check for the corresponding row command

example

protected void gridview_0nrowcommand(object sender, gridvieweventargs e)
{

if(e.command == "nameofcommand")
{
label lb = gridview.row.findcontrol("nameoflabel");
if(lb.text your expression/comparison)
{
}
}
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900