Advertisement
Guest User

Untitled

a guest
Aug 14th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <Triggers>
  2. <asp:PostBackTrigger ControlID="controlID" />
  3. </Triggers>
  4.  
  5. var control = e.Row.FindControl("YourControlID");
  6. if(control != null)
  7. ScriptManager.RegisterPostbackControl(control);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement