如何将动态生成的网页显示到新标签?

时间:2017-11-18 06:02:26

标签: javascript html asp.net webpage

我已经在代码后面动态生成了一个网页。如何在用户桌面上加载和显示它?(c#,asp.net) 这是我的代码:

       StringBuilder strHtm = new StringBuilder();


        strHtm.Append("<html>");
        strHtm.Append(Environment.NewLine);

        strHtm.Append("<head>");
        strHtm.Append(Environment.NewLine);
        strHtm.Append("<meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">");
        strHtm.Append(Environment.NewLine);

       strHtm.Append("</head>");
        strHtm.Append(Environment.NewLine);

        strHtm.Append("<body>");
        strHtm.Append(Environment.NewLine);

         //some code here reading from datatable

        strHtm.Append("</body>");
        strHtm.Append(Environment.NewLine);

        strHtm.Append("</html>");
        strHtm.Append(Environment.NewLine);

现在如何在浏览器新标签页或窗口中加载它?

1 个答案:

答案 0 :(得分:1)

  1. 添加另一个asp页面
  2. 将PlaceHolder添加到新创建的asp页面
  3. 删除html,head,body标签
  4. 最后在page_load

    中添加这行代码
    PlaceHolder1.Controls.Add(new LiteralControl(strHtm.ToString().Trim()))