DataView Button Event

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

Hi

What event is raised when the user click on a regular (not delete, edit
buttons) within the control

Thank you,
Sam
 
check out by enabling the traceMode for the page.

<%@Page language="c#" Codebehind="ViewFlow.aspx.cs" Trace="true"
TraceMode="SortByCategory">
 
What event is raised when the user click on a regular (not delete, edit
buttons) within the control

None.
You need to add the button in command mode.
Associate a CommandName and CommandArgument with the button and then handle
the RowCommand event.

btw, I'm assuming that you are talking about GridView (DataView has no such
events :D)



--
Happy Hacking,
Gaurav Vaish | www.mastergaurav.com
www.edujini-labs.com
http://eduzine.edujinionline.com
-----------------------------------------
 
Back
Top