Hi ..
I have more no of gridviews and labels in asp...
I want to bind gridview while drag drop the label...So i need idea for that..
pls help...
Hi ..
I have more no of gridviews and labels in asp...
I want to bind gridview while drag drop the label...So i need idea for that..
pls help...
You can check if label exists gridview will be bound
Control control = this.FindControl("Label1") as Control;
if (control !=null)
{
GridView1.DataSource = data;
GridView1.DataBind();
}
For every expert, there is an equal and opposite expert. - Becker's Law
My blog
My TechNet articles
Hi Eshani,
Why do you think you can't use a computed column in this sceanrio. If the logic to calculate the due date is based only on the invoice date and payment frequency, which are other columnd in the same row, then this is a classic scenario for a computed column. You can put the same logic that you would put in a trigger - in a computed column. It would be more efficient and easier to maintain.
Thanks Glantser.
Is this comuted column works when update occurs?
ESHANI. Please click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you
TOP is the standard SQL Server query clause. Look into the structure of SQL query and particularly into TOP option:
For every expert, there is an equal and opposite expert. - Becker's Law
My blog
My TechNet articles