Hey there,
I have an object on whose databound event I want it to call
a certain
method called 'dbound'
protected void Page_Load(object sender, EventArgs e)
{
............
Chart1.DataBound += new System.EventHandler(this.dbound);
.........
}
protected void dbound(object sender, EventArgs e)
{
....
}
However, my dbound event is not being called. I'm not very
familiar
with this. How do I get Chart1 to called dbound on its
databound
event? Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "C-Sharp (C#)" group.
To post to this group, send email to C_Sharp googlegroups.com
To unsubscribe from this group, send email to
C_Sharp-unsubscribe googlegroups.com
For more options, visit this group at http://g
roups.google.com/group/C_Sharp?hl=en
-~----------~----~----~----~------~----~------~--~---
|