Advertisement
panxop

Untitled

Sep 13th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public static void DisableLinkButton(LinkButton linkButton)
  2. {
  3. linkButton.Attributes.Remove("href");
  4. linkButton.Attributes.CssStyle[HtmlTextWriterStyle.Color] = "gray";
  5. linkButton.Attributes.CssStyle[HtmlTextWriterStyle.Cursor] = "default";
  6. if (linkButton.Enabled != false)
  7. {
  8. linkButton.Enabled = false;
  9. }
  10.  
  11. if (linkButton.OnClientClick != null)
  12. {
  13. linkButton.OnClientClick = null;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement