Repeater - 文本框内容到数据库C#

时间:2017-07-03 21:48:44

标签: c# sql asp.net repeater

我正在尝试以后评论的方式从转发器元素内的文本框中向我的本地数据库插入内容。到目前为止,我已经尝试在所有生成的行上循环以查找特定的文本框但是我没有运气,插入变为空,或者每个预先存在的行获得1个插入,或者我反复插入相同的值通过不同的帖子。

我终于尝试将post id传递给itemfinder并且它有点工作,但是文本框中的“comm_contenido”插入仍然是空的数据库。

我的问题是在Repeater中处理这类插入的正确和更直接的方法是什么?

C#:

protected void Button1_Command(object sender, CommandEventArgs e)
{

    string postid = e.CommandArgument.ToString();
    string emailcc = Session["EMAIL"].ToString();
    string user_id = Session["ID"].ToString();
    string usrnom = Session["NOMBRE"].ToString();
    string usrfoto = Session["FOTO_URL"].ToString();
    //string COMM_CONTENIDO = lblcomm.Text.ToString();

    var COMM_fecha = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
    TextBox txt2;

        using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["ConexionBD"].ConnectionString))
        {
            using (SqlCommand cmd = new SqlCommand())
            {

                int m = Int32.Parse(postid);
                txt2 = (TextBox)Repeater_UsrPosts.Items[m].FindControl("txtcomentar");
                string txt1 = txt2.Text;

                cmd.CommandType = CommandType.Text;
                cmd.CommandText = (@"INSERT INTO MIEMBROS_Comments (COMM_USER_ID, COMM_CONTENIDO, COMM_FECHA, COMM_USER_NOMBRE, COMM_USER_FOTO, COMM_POST_ID) VALUES ('"
                + user_id + "','" + txt1 + "','" + COMM_fecha + "','" + usrnom + "','" + usrfoto + "','" + postid + "');");
                cmd.Connection = conn;
                conn.Open();
                int rowsAffected = cmd.ExecuteNonQuery();
            }
        }

        //txtpublica.Text = "";
        traerposts();

}

ASP:

<asp:Repeater ID="Repeater_UsrPosts" runat="server" >
    <ItemTemplate>

        <!-- Post -->
        <div class="post clearfix">
            <div class="user-block">



                <img alt="" src="<%#Eval("post_user_foto")%>" class="img-circle img-bordered-sm" />

                <span class="username">
                    <a href="#"><%#Eval("post_user_nombre") %></a>
                    <a href="#" class="pull-right btn-box-tool"><i class="fa fa-times"></i></a>
                </span>
                <span class="description"><%#Eval("post_fecha") %></span>
            </div>
            <!-- /.user-block -->

            <p>

                <%#Eval("post_contenido") %>
            </p>

            <ul class="list-inline">
                <li><a href="#" class="link-black text-sm"><i class="fa fa-share margin-r-5"></i>Share</a></li>
                <li><a href="#" class="link-black text-sm"><i class="fa fa-thumbs-o-up margin-r-5"></i>Like</a>
                </li>
                <li class="pull-right">
                    <asp:LinkButton ID="bttnabrircomentarios" runat="server" class="link-black text-sm">
                        <i class="fa fa-comments-o margin-r-5"></i>Comments</asp:LinkButton>
                </li>
            </ul>

            <asp:TextBox ID="txtcomentar" runat="server" class="form-control input-sm" placeholder="Escribe un comentario" EnableViewState="False"></asp:TextBox>

            <%# Eval("post_id") %> -

            <asp:Button ID="Button1" runat="server" Text="Button"
                OnCommand="Button1_Command" CommandName="myCommand"
                CommandArgument='<%# Eval("post_ID") %>' />
            <br />
        </div>
        <!-- /.post -->
    </ItemTemplate>
</asp:Repeater>

2 个答案:

答案 0 :(得分:1)

您可以通过为TextBox分配OnTextChanged来控制AutoPostBack,如果您想立即获取数据,也可以将true分配给if(!IsPostBack)。< / p>

但在将数据绑定到转发器之前,您应该使用Controls,因此在您到达数据之前,它不会重置OnTextChanged

sender需要两个参数,其中一个是调用它的TextBox对象,那是你的<asp:Repeater ID="RepeaterExample" runat="server"><ItemTemplate> <asp:TextBox runat="server" ID="TextBoxExample" AutoPostBack="True" OnTextChanged="TextBoxExample_OnTextChanged"/> </ItemTemplate></asp:Repeater> ,类似......

ASP

protected void TextBoxExample_OnTextChanged(object sender, EventArgs e)
{
    TextBox txt = (TextBox) sender;
    //Response.Write(txt.Text);
    //or whatever you want to do with it.
}

代码背后

Button_OnClick

如果您想将它与<asp:Button runat="server" ID="ButtonExample" OnClick="ButtonExample_OnClick"/> 一起使用,您应该使用稍后可以调用的全局字符串,您可以执行以下操作。

ASP

private string text = "";

protected void TextBoxTest_OnTextChanged(object sender, EventArgs e)
{
    TextBox txt = (TextBox)sender;
    text = txt.Text;
}

protected void ButtonExample_OnClick(object sender, EventArgs e)
{
    //Response.Write(text);
}

代码背后

TextBox

但是最后一个方法将采用其文本已更改的最后一个text += txt.Text; 的值,除非您将其一起添加为..

sudo python __init__.py

希望,我可以帮忙..

答案 1 :(得分:0)

这些更改有助于我找到特定的文本框并防止发布不需要的数据。

C#:

protected void Button1_Command(object sender, CommandEventArgs e)
{

    string postid = e.CommandArgument.ToString();
    string emailcc = Session["EMAIL"].ToString();
    string user_id = Session["ID"].ToString();
    string usrnom = Session["NOMBRE"].ToString();
    string usrfoto = Session["FOTO_URL"].ToString();

    var COMM_fecha = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
    Control s = (Control)sender;
    TextBox tb = (TextBox)s.NamingContainer.FindControl("txtcomentar");
    tb.ReadOnly = true;
    using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["ConexionBD"].ConnectionString))
    {
        using (SqlCommand cmd = new SqlCommand())
        {

            string txt1 = tb.Text;

            cmd.CommandType = CommandType.Text;
            cmd.CommandText = (@"INSERT INTO MIEMBROS_Comments (COMM_USER_ID, COMM_CONTENIDO, COMM_FECHA, COMM_USER_NOMBRE, COMM_USER_FOTO, COMM_POST_ID) VALUES ('"
            + user_id + "','" + txt1 + "','" + COMM_fecha + "','" + usrnom + "','" + usrfoto + "','" + postid + "');");
            cmd.Connection = conn;
            conn.Open();
            int rowsAffected = cmd.ExecuteNonQuery();
        }
    }
    traerposts();
}

在ASP上我将属性 EnableVIewState =“true”添加到文本框中,也添加到转发器中。

最后,最重要的是,我在onload事件中添加了 if(!Page.IsPostBack)

所有这些一起正确地插入了每个帖子的评论。