private void Page_Load(object sender, System.EventArgs e)

  private void Page_Load(object sender, System.EventArgs e)
  {
   Response.Expires=-1;
   if(!IsPostBack)
   {
    
    CodeHighlighterConfiguration codeConfig=(CodeHighlighterConfiguration)System.Configuration.ConfigurationSettings.GetConfig("codeHighlighter");
    foreach(string key in codeConfig.LanguageConfigs.Keys)
    {
     LanguageDropDownList.Items.Add(key);
     if(key=="C#")
     {
      LanguageDropDownList.SelectedIndex=LanguageDropDownList.Items.Count-1;
     }
    }

   }

  }

posted @ 2006-05-27 12:54  不想睡觉  阅读(706)  评论(0)    收藏  举报