4

是否有可能在一个 aspx 文件中调用一个返回带有 ASP.NET 代码的字符串的方法,并在重新加载页面之前运行该代码?

所以几乎有以下内容:

<asp:DataList //blahblah>
   <ItemTemplate>
      <%= GenerateTable() %>
   </ItemTemplate>
</asp:DataList>

GenerateTable() 创建一个表,其中包含 asp:Label 对象,其值由 asp:DataList 的 DataSource 确定。

现在,我已经正确生成了 ASP.NET 代码。问题是在页面加载之前它没有被翻译成 HTML,所以你看不到它。

更新: 我想要一个单独的方法来生成 ASP.NET 代码的原因是因为我想让显示的列可配置,所以网站并不总是显示相同的列。

解决方案尝试的更新: 我尝试创建以下用户控件来插入我的 ASP.NET 代码,但它仍然遇到同样的问题。我做错了吗?

用户控制:

 <%@ Control Language="C#" CodeBehind="TableGenerator.ascx.cs"      Inherits="DagReport_WebRole.DynamicData.FieldTemplates.TableGenerator" %>

<div class="tableRow">
    <%= this.GetASPCode() %>
</div>

用户控制 C#:使用 System.Web.UI;

namespace DagReport_WebRole.DynamicData.FieldTemplates
{
    public partial class TableGenerator : System.Web.DynamicData.FieldTemplateUserControl
    {
        public string Code { get; set; }

        public string GetASPCode()
        {
             return Code;
        }
    }   
}

在我的 ASPX 文件中:

            <ItemTemplate>
                <div class="dagRow"></div>
                <userControl:TableGenerator
                    Code="<%=GetRowASPCode()%>"></userControl:TableGenerator>
            </ItemTemplate>
4

3 回答 3

10

与您现在尝试的直接代码注入不同,您可以将用户控件添加到您的 ItemTemplate 并在用户控件中执行您的代码。该代码将动态构建所需的 ASP.NET 控件并将它们添加到用户控件的 .Controls 集合中。

这样,您将拥有两全其美:动态代码执行和(因为用户控制参与页面生命周期)正确的 HTML 生成。

更新

这是一个基本的例子。假设您创建了用户控件“WebUserControl2.ascx”并将其添加到您的主页:

<%@ Register src="WebUserControl2.ascx" tagname="WebUserControl2" tagprefix="uc1" %>

然后你可以将它添加到你的 DataList ItemTemplate:

 <asp:DataList runat="server" ID="DataList1">
 <ItemTemplate>
     <uc1:WebUserControl2 ID="MyWebUserControl" runat="server" />                
  </ItemTemplate>
 </asp:DataList>

在您的 Web 用户控件代码 WebUserControl2.ascx.cs 中,您添加了一个标签、一个文本框和一个按钮:

protected void Page_Load(object sender, EventArgs e)
{
    Label Label1 = new Label();

    Label1.ID="Label1";
    Label1.Text = "Please enter info: ";
    this.Controls.Add(Label1);

    TextBox Textbox1 = new TextBox();
    Textbox1.ID="Textbox1";
    this.Controls.Add(Textbox1);


    Button Button1 = new Button();
    Button1.ID = "Button1";
    Button1.Text = "Submit";
    this.Controls.Add(Button1);

}

当页面运行并绑定 DataList 时,您将得到如下内容:

在此处输入图像描述

您可以将属性添加到用户控件并从主页分配它们的值,例如 DataList ItemCreated 事件,这样控件将知道当前正在创建哪个项目并采取相应的行动。

于 2013-08-17T00:51:39.773 回答
3

不,因为代码GenerateTable()将不会运行,直到DataList发生数据绑定(在期间Page_Load或之后),这取决于您是否有一个事件处理程序来执行数据绑定而不是内置页面事件。

更新:

要在页面生命周期之外加载数据,则需要在页面生命周期之外进行。

要在页面更新之间将 HTML 注入页面,则需要在客户端调用 AJAX 调用,如下所示:

这里我们有一个从服务器加载 HTML 片段的点击处理程序,但它可以很容易地适应通过服务器端逻辑或模板返回动态 HTML。

<script type="text/javascript">
    $(document).ready(function () {
        $("#myButton").click(function() {
            $.get("YourFile.html", function(data) {
                $("#YourDIV").append(data);
            });
        });
    });
</script>

注意:请注意,页面加载会清除此动态加载的数据。

于 2013-08-16T22:34:02.060 回答
0

不确定您要完成什么,但嵌套中继器怎么样:

<asp:Repeater ID="repeaterConversation" runat="server">
    <ItemTemplate>
        <asp:Repeater ID="rptPosts" runat="server">
            <ItemTemplate>
            </ItemTemplate>
        </asp:Repeater>
    </ItemTemplate>
</asp:Repeater>

然后在您的代码隐藏中:

Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    repeaterConversation.DataSource = source
    repeaterConversation.DataBind()
End Sub

Protected Sub repeaterConversation_ItemDataBound(sender As Object, e As RepeaterItemEventArgs) Handles repeaterConversation.ItemDataBound
    If (item.ItemType = ListItemType.Item Or item.ItemType = ListItemType.AlternatingItem) Then
        //here you can do calulations based on the data bound in the parent repeater
        //and also bind to controls and child repeaters
        Repeater_Posts = item.FindControl("rptPosts")
        Repeater_NewPostBtn = item.FindControl("btnNewPost")
        Repeater_Posts.DataSource = source
        Repeater_Posts.DataBind()
    End If
End Sub
于 2013-08-17T00:01:31.767 回答