我正在尝试在运行时构建一个aspx页面(通过另一个aspx页面,最终重定向到新的页面)。据我所知,aspx页面必须在用户可以查看之前进行预编译。换句话说,必须将aspx页面编译到/ bin文件夹中的DLL。
在我将用户重定向到页面之前,有没有告诉IIS或通过VB.NET代码订购它来编译页面?
任何帮助都会受到极大关注。
答案 0 :(得分:1)
您可以使用VirtualPathProvider class从数据库加载页面。
答案 1 :(得分:0)
基本上,您需要的是动态呈现页面内容。您可以通过向控件集合添加控件(HTML或Server Ones)来动态地在服务器端创建页面内容,例如放置holder服务器元素。
例如,您可以使用以下标记创建页面:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestPage.aspx.cs" Inherits="StackOverflowWebApp.TestPage" %>
<!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">
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" />
<asp:PlaceHolder runat="server" ID="ContentPlaceHolder"></asp:PlaceHolder>
</form>
</body>
</html>
然后在类后面的代码中,我们可以添加控件来呈现,这是动态地从数据库中读取信息所必需的。
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
namespace StackOverflowWebApp
{
public partial class TestPage : Page
{
#region Methods
protected override void CreateChildControls()
{
base.CreateChildControls();
// HERE get configuration from database.
// HERE create content of the page dynamically.
// Add reference to css file.
HtmlLink link = new HtmlLink { Href = "~/Styles/styles.css" };
link.Attributes.Add("type", "text/css");
link.Attributes.Add("rel", "stylesheet");
this.Page.Header.Controls.Add(link);
// Add inline styles.
HtmlGenericControl inlineStyle = new HtmlGenericControl("style");
inlineStyle.InnerText = "hr {color:sienna;} p {margin-left:20px;}";
this.Page.Header.Controls.Add(inlineStyle);
// Add div with css class and styles.
HtmlGenericControl div = new HtmlGenericControl("div");
this.ContentPlaceHolder.Controls.Add(div);
div.Attributes.Add("class", "SomeCssClassName");
div.Attributes.CssStyle.Add(HtmlTextWriterStyle.ZIndex, "1000");
TextBox textBox = new TextBox { ID = "TestTextBox" };
div.Controls.Add(textBox);
// and etc
}
#endregion
}
}
注意:此示例可以是创建动态页面的起点,其内容取决于数据库或配置中指定的值。