J
Jim Heavey
I have a datalist control and when edit mode, I have three buttons, one for
delete, one for cancel and one for Update. My Update button is not causing
anything to happen. The other two events work just fine.
I thought the way in knows which event to fire is by the "CommandName"
My button looks like the following:
<asp:Button CommandName="Update" Text="Update Highlights" Runat="server"
ID="cmdUpdateHighlights" CausesValidation="True"></asp:Button>
My OnUpdateCommand in the Datalist Attribute looks like this...
OnUpdateCommand="ProcessHighlightUpdateCommand"
SO is it not true that if my command name is "Update" that run
"ProcessHighlightUpdateCommand"?
It seems to work on the other buttons, but why not Update?
Thanks in advance for your assistance!!!!
delete, one for cancel and one for Update. My Update button is not causing
anything to happen. The other two events work just fine.
I thought the way in knows which event to fire is by the "CommandName"
My button looks like the following:
<asp:Button CommandName="Update" Text="Update Highlights" Runat="server"
ID="cmdUpdateHighlights" CausesValidation="True"></asp:Button>
My OnUpdateCommand in the Datalist Attribute looks like this...
OnUpdateCommand="ProcessHighlightUpdateCommand"
SO is it not true that if my command name is "Update" that run
"ProcessHighlightUpdateCommand"?
It seems to work on the other buttons, but why not Update?
Thanks in advance for your assistance!!!!