我有两个下拉列表,一个是天,一个是晚上。我还有两个按钮,一个按钮创建动态文本框,客户可以在白天和他们想要度过夜晚的地方输入他们想要做的事情。
例如,如果一个客户选择了4天4夜,则会在按下第一个按钮时创建一个文本框。当用户点击第二个按钮时,我想将所有这些值存储在数据库中,但我注意到在回发时字段丢失,我没有要存储的数据。
如何在回发时从运行时创建的控件中获取值?
答案 0 :(得分:0)
以下是如何做到这一点:
protected void Page_Load(object sender, EventArgs e)
{
if (Session["testTextBox"] != null)
{
Request.Form[Session["testTextBox"].ToString()].ToString()
}
}
protected void Button1_Click(object sender, EventArgs e)
{
TextBox t = new TextBox { ID = "testTextBox" };
this.Form.Controls.Add(t);
Session["testTextBox"] = t.UniqueID;
}
如果您通过客户端呼叫添加文本框,则无需存储UniqueID。例如,Button1_Click是按钮的回发方法。
答案 1 :(得分:0)
即使在后面的代码中添加控件“很好”,它也可能导致以后出现问题。编辑视图时也不是很好,你必须在代码隐藏中更改一堆代码。解决方案是使用数据绑定控件,例如Repeater控件。这样,您可以在 aspx 文件中设计视图,并将编码保留在cs文件中。它还负责在使用回发时保存信息,因为它已经设置为使用控件的视图状态,这意味着您不必这样做。
因此,使用转发器,您的aspx可能看起来像这样。
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="RepeaterPage.aspx.cs" Inherits="ASPTest.RepeaterPage" %>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h1>Test</h1>
<div>
<asp:Button Text="Add textbox" ID="Button1" OnClick="OnAddItem" runat="server" />
<asp:Button Text="Read values" ID="Button2" OnClick="OnReadValues" runat="server" />
</div>
<div>
<asp:Label ID="values" runat="server"></asp:Label>
</div>
<asp:Repeater ID="listofvalues" runat="server">
<ItemTemplate>
<asp:HiddenField ID="ID" Value='<%# Eval("ID") %>' runat="server" />
<asp:TextBox ID="ValueBox" Text='<%# Server.HtmlEncode((string)Eval("Value")) %>' runat="server" />
</ItemTemplate>
</asp:Repeater>
</asp:Content>
请注意,我正在使用母版页,因此内容控件仅链接到母版页中的某些ContentPlaceHolder。在这个aspx页面中,您将看到转发器控件中的itemtemplate设置显示值所需的所有设计。我们将在代码中看到这是如何实现的。
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ASPTest
{
public partial class RepeaterPage : Page
{
private List<Item> cache;
public List<Item> ItemValues
{
get
{
if (cache != null)
{
return cache;
}
// load values from database for instance
cache = Session["values"] as List<Item>;
if (cache != null)
{
return cache;
}
Session["values"] = cache = new List<Item>();
return cache;
}
}
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
listofvalues.DataBinding += bindValues;
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if (!Page.IsPostBack)
{
DataBind();
}
}
protected void OnAddItem(object sender, EventArgs e)
{
ItemValues.Add(new Item("some value"));
DataBind();
}
protected void OnReadValues(object sender, EventArgs e)
{
foreach (RepeaterItem repeateritem in listofvalues.Items)
{
TextBox box = (TextBox)repeateritem.FindControl("ValueBox");
HiddenField idfield = (HiddenField)repeateritem.FindControl("ID");
Item item = findItem(idfield.Value);
item.Value = box.Text;
}
StringBuilder builder = new StringBuilder();
foreach (Item item in ItemValues)
{
builder.Append(item.Value).Append(";");
}
values.Text = builder.ToString();
}
private Item findItem(string idvalue)
{
Guid guid = new Guid(idvalue);
foreach (Item item in ItemValues)
{
if (item.ID == guid)
{
return item;
}
}
return null;
}
private void bindValues(object sender, EventArgs e)
{
listofvalues.DataSource = ItemValues;
}
}
public class Item
{
private readonly Guid id;
private string value;
public Item(string value)
{
this.value = value;
id = Guid.NewGuid();
}
public Guid ID
{
get { return id; }
}
public string Value
{
get { return value; }
set { this.value = value; }
}
}
}
对于长代码示例感到抱歉,但我希望它是彻底的。你会看到我在ItemValues属性中引入了一个Items列表。您可以从任何地方加载值。我使用了Session集合,但如果需要,可以从数据库或其他地方加载。
另外,请注意我们对视图的唯一了解是控件类型和控件ID。没有代码描述如何添加或设置控件,我们将其留给aspx页面。这使得两者之间的关注点容易分离。
相反,当我们想要添加 TextBox 时,我们会添加数据项的新实例,即Item
类的实例。在OnReadValues方法中,我们可以更新绑定到转发器的数据项值,然后使用控件中的值或数据列表中项目的值。
我希望这说明了如何使用ASP.NET创建动态页面,而不在代码后面创建控件,因为如果你这样做就不需要它。