Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 11th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Show TinyMCE when use is logged in otherwise not
  2. @if (HttpContext.Current.User.IsInRole("Administrator")) {
  3.  
  4.     <script type="text/javascript">
  5.         $(function() {
  6.             $('#mytextarea').tinymce({
  7.                 // tinymce config
  8.             });
  9.         });
  10.     </script>
  11.  
  12. }