0

我有一个参数名称列表,我希望用户输入一些值,所以我这样做:

<div>
    <asp:Repeater runat="server" ID="rptTemplateParams" EnableViewState="true">
    <HeaderTemplate>
        <ul>
    </HeaderTemplate>
    <ItemTemplate>
        <li>
            <asp:Label runat="server"><%#Container.DataItem%></asp:Label>
            <asp:TextBox runat="server" ID="textParamValue"></asp:TextBox>
        </li>
    </ItemTemplate>
    <FooterTemplate>
        </ul>
    </FooterTemplate>
    </asp:Repeater>
</div>
<asp:Button runat="server" ID="Send" Text="Send Email" OnClick="Send_Click" />

在服务器端:

void Page_Load(...)
{
    rptTemplateParams.DataSource =Params;  // Params is List<string>
    rptTemplateParams.DataBind();
}



public void Send_Click(object sender, EventArgs e)
{
    ParamDict = new Dictionary<string, string>();
    foreach (RepeaterItem item in rptTemplateParams.Items)
    {
    if (item.ItemType == ListItemType.Item)
    {
        TextBox textParamValue = (TextBox)item.FindControl("textParamValue");
        if (textParamValue.Text.Trim() != String.Empty)
        {
            // IT NEVER GETS HERE - textParamValue.Text IS ALWAYS EMPTY!!!

            ParamDict.Add(item.DataItem.ToString(), textParamValue.Text);
        }
    }
    }
}

正如我在评论中所说,我无法检索文本框值 - 它们始终为空。我在错误的地方检索那些吗?

谢谢!安德烈

4

2 回答 2

2

尝试像这样修改您的 page_load

if(!Page.IsPostBack)
{
    rptTemplateParams.DataSource =Params;  // Params is List<string> 
    rptTemplateParams.DataBind(); 

}

数据绑定会清除现有控件并用新的空白控件替换它们。您只想在必要时进行数据绑定。

于 2010-02-24T22:37:50.520 回答
1

尝试这个:

void Page_Load(...)
{
    if (!IsPostBack)
    {
        rptTemplateParams.DataSource =Params;  // Params is List<string>
        rptTemplateParams.DataBind();
    }
}
于 2010-02-24T22:39:04.697 回答