protected void Page_Load(object sender, EventArgs e)
        {
            TextContent.InnerHtml = File.ReadAllText(Server.MapPath(@"~/App_Data/Article.html"));

            TableOfContentsTreeView.DataBind();
            TableOfContentsTreeView.ExpandAll();
        }
예제 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            TextContent.InnerHtml = File.ReadAllText(Server.MapPath(@"~/App_Data/Overview.html"));

            TableOfContentsTreeView.DataBind();
            TableOfContentsTreeView.ExpandAll();

            //logger.Info("Hello world");

            //Exception ex = new Exception("thu nghiem Nlog");
            //logger.Error(ex, "Goodbye cruel world");
        }