用户控件中的引用文本框来自同一控件内部

时间:2013-10-26 07:43:37

标签: c# asp.net user-controls

我有一个带有文本框和按钮的用户控件。当我按下按钮时,我尝试使用文本框的ID(来自用户控件的代码后面)读取内容,但我总是得到一个空白的结果。从相同的用户控件引用用户控件中的控件的正确方法是什么。

我在其他地方读到我应该只使用控件ID,但不知何故它不起作用。我一定做错了,我希望这是一个常见的错误,而且有人可以对此有所了解。

修改

标记:

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ForumPostControl.ascx.cs" Inherits="ForumPostControl" debug="true" %>

    <div id="PostDiv" runat="server">
        <table width="100%" cellpadding="0" cellspacing="0" border="0" style="border:1px solid white; border-radius:5px; margin-bottom:5px;">
            <tr>
                <td valign="top" width="52" style="text-align:center; padding:10px 0px 10px 0px; border-bottom:1px dashed #FFF;">
                    <asp:Image ID="imgReplyPoster" runat="server" />
                </td>
                <td valign="middle" style="text-align:left; padding:10px 0px 10px 0px; border-bottom:1px dashed #FFF;">
                    <asp:HyperLink ID="lnkReplyPoster" runat="server">lnkReplyPoster</asp:HyperLink><br />
                    <asp:Label ID="lblCreated" runat="server" Text="Label"></asp:Label>
                </td>
                <td style="text-align:right; padding:10px 20px 10px 0px; border-bottom:1px dashed #FFF;">
                    <asp:LinkButton ID="btnReply" runat="server" onclick="btnReply_Click">Reply</asp:LinkButton>
                    <asp:LinkButton ID="btnDelete" runat="server" OnClick="btnDelete_Click" OnClientClick="return ConfirmClick('Do you really want to delete this post?');"><img src="images/icons/trash16.png" alt="Delete" border="0" /></asp:LinkButton>
                </td>
            </tr>
            <tr>
                <td valign="top" align="justify" style="padding:10px;" colspan="3">
                    <asp:Literal ID="ltrlPostBody" runat="server"></asp:Literal>
                </td>
            </tr>
        </table>

    <asp:PlaceHolder ID="phReply" runat="server" Visible="False">
        <div align="center" style="padding:5px 10px 10px 10px;">
            <asp:HiddenField ID="hdnParentID" runat="server" />
            <table cellpadding="0" cellspacing="0" border="0">
                <tr>
                    <td>
                        <asp:TextBox ID="txtReply" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td align="right" style="padding-top:20px;">
                        <asp:LinkButton ID="lnkPostReply" runat="server" OnClick="lnkPostReply_Click">Post reply</asp:LinkButton>
                    </td>
                </tr>
            </table>
        </div>
    </asp:PlaceHolder>
  </div>

将文本保存到数据库的代码:

protected void lnkPostReply_Click(Object sender, EventArgs e)
{
    String connectionString = (String)System.Configuration.ConfigurationManager.AppSettings["ConnectionString"];
    SqlConnection cnn = new SqlConnection(connectionString);
    SqlCommand cmd;
    String strSQL;
    cnn.Open();

    strSQL = "INSERT INTO ForumThreads (ForumID, ParentID, PostBody, Created, CreatedBy, Modified, ModifiedBy) VALUES " +
"(@ForumID, @ParentID, @PostBody, GETDATE(), @CreatedBy, GETDATE(), @CreatedBy);";
    cmd = new SqlCommand(strSQL, cnn);
    cmd.Parameters.AddWithValue("@ForumID", prvForumID);
    cmd.Parameters.AddWithValue("@ParentID", prvForumThreadID);
    cmd.Parameters.AddWithValue("@PostBody", txtReply.Text);
    cmd.Parameters.AddWithValue("@CreatedBy", CurrentMember.MemberID);
    cmd.ExecuteNonQuery();
    cmd.Dispose();
    cnn.Close();
    cnn.Dispose();

    Response.Redirect("forum_topic.aspx?TID=" + prvEncryptedTID);
}

问题在于读取txtReply控件。

编辑#2

我仍然在努力解决这个问题并进行实验。这里有一些发现,我希望他们可以帮助解开这个谜团。我注意到我可以从文本框控件中读取属性,例如宽度和ID,但我无法读取用户输入的文本。它总是返回空白。如果我以编程方式将文本预先设置为“初始文本”,那么当我尝试读取.text属性时,无论用户输入什么,我仍然会得到“初始文本”。就好像键入的文本在回发时丢失了用户。

1 个答案:

答案 0 :(得分:1)

正如您提到的那样,您在转发器中使用了usercontrol,我会检查页面的Page_Load事件方法,看看我是不是在回发时重新绑定转发器:

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        Repeater1.DataSource = GetData();
        Repeater1.DataBind();
    }
}

我的Repeater1_ItemDataBound看起来像:

protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
        ForumPostControl myControl = (ForumPostControl)e.Item.FindControl("ForumPostControl1");
        myControl.MyProperty = 20;//My custom property of user control
    }
}

现在,每个回发都可能会清除我的usercontrol的自定义属性。我需要确保它在postback上持续存在。在我的 ForumPostControl.ascx.cs 中,我会将此属性的值存储在visestate中,并在需要时进行检索。我应该在我的usercontrol中使用此代码:

public int MyProperty 
{ 
    get
    {
        int myProperty = 0;
        if (ViewState["MyProperty"] != null)
        {
            int.TryParse(ViewState["MyProperty"].ToString(), out myProperty);
        }
        return myProperty;
    } 
    set
    {
        ViewState["MyProperty"] = value;
    }
}