0

以下代码创建 file.aspx 和 file.aspx.cs:

protected void Button1_Click(object sender, EventArgs e)
{
    string fielName = Server.MapPath("~/file.aspx");        
    TextWriter tw = new StreamWriter(fielName);        
    tw.WriteLine(@"<%@ Page Language=""C#"" AutoEventWireup=""true""  CodeFile=""file.aspx.cs"" Inherits=""file"" %>
                   <!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN"" ""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">
                    <html xmlns=""http://www.w3.org/1999/xhtml"">
                    <head runat=""server"">
                        <title></title>
                    </head>
                    <body>
                        <form id=""form1"" runat=""server"">
                        <div>

                        </div>
                        </form>
                    </body>
                    </html>
                    ");        
    tw.Close();
    tw = new StreamWriter(fielName + ".cs");

    tw.WriteLine(@"using System;
                    using System.Collections.Generic;
                    using System.Linq;
                    using System.Web;
                    using System.Web.UI;
                    using System.Web.UI.WebControls;
                    using System.IO;

                    public partial class file : System.Web.UI.Page
                    {
                        protected void Page_Load(object sender, EventArgs e)
                        {
                           Response.Write(""new File "");

                        }
                    }
                    ");       
    tw.Close();
}

我想让页面名称写在我的文本框中。

我曾尝试将文本框放入上述代码的 html 源代码中,但出现错误。

CodeFile="""+TextBox1.Text+""" Inherits="""+TextBox1.Text+"""
4

2 回答 2

1

如果按照 ASP.NET“思考”页面的方式工作,您会走得更远。我曾经做过一份非常庞大的动态问卷。所有控件都与验证和其他所有内容一起动态生成。在它的核心,我们这样做的方式是:

  • 在页面上放置一个面板
  • 将控件添加到面板

代码非常粗略地看起来像这样:

        var btn = new Button();
        btn.ID = "theId";
        btn.Text = "hi";
        pnlDynamic.Controls.Add(btn);

因为您正在处理动态控件,所以您可能还想确保您了解页面生命周期......: http: //msdn.microsoft.com/en-us/library/ms178472(v=vs. 100).aspx

于 2013-06-25T16:45:32.337 回答
0

确保您的 Web 项目被声明为一个网站而不是一个 Web 应用程序

网站愿意根据需要动态编译每个页面,这与 Web 应用程序不同,所以这样的事情原则上是可行的。如果你真的想做。

于 2013-06-25T14:55:12.830 回答