示例#1
0
 protected void TopicEditor_TopicSaved(object sender, TopicEditEventArgs e)
 {
     if (e.NameChanged)
     {
         loadTree(e.TopicId);
     }
     TopicEditor.LoadTopic(e.TopicId);
 }
示例#2
0
 protected void TopicEditor_TopicNuked(object sender, TopicEditEventArgs e)
 {
     loadTree();
 }
示例#3
0
 protected void TopicEditor_TopicAdded(object sender, TopicEditEventArgs e)
 {
     loadTree(e.TopicId);
     TopicEditor.LoadTopic(e.TopicId);
 }