hi
i put the control that is dropdownlist in a table and
there was an onclick event for the table and when i am doing onclick for the web part
the event is raising a break point that TABLE1_Click event undefined
how can i go with that
it pls help
I guess the table what you are using is a html control and the method you defined for the onclick event is in server side. You have to add "runat=server" in your table's tag. Only in this way, it can find the event handler.
hi thanks
i found that