为什么在这种情况下,中继器控制的onitemcommand不工作

本文关键字:onitemcommand 工作 控制 中继器 这种情况下 为什么 | 更新日期: 2023-09-27 18:07:46

我有图像在ItemTemplate,将根据用户名(即lblPostedBy.Text)改变。我在c# Asp.net 4.0中编写了重复器控件的onItemCommand代码。但没有用。你能帮帮我吗?

protected void myrepeater_ItemCommand1(object source, RepeaterCommandEventArgs e)
{
    // Actually lblPostedBy is a linkbutton and lblPostedBy.Text is 'username of the commenter'.
    LinkButton lblPostedBy = (LinkButton)e.Item.FindControl("lblPostedBy");
    con.Open();
    cmd.CommandText = "select image from " + lblPostedBy.Text + " where id=1";
    // 'image' column in table stores path of image like '~/image/image1.jpg'
    cmd.Connection = con;
    string imageurl = (string)cmd.ExecuteScalar();
    con.Close();
    Image Image1 = (Image)e.Item.FindControl("Image1");
    Image1.ImageUrl = imageurl;
}

<asp:Repeater ID="myrepeater" runat="server" 
    onitemcommand="myrepeater_ItemCommand1">
        <HeaderTemplate>
            <table width="100%" style="font: 8pt verdana">
                <tr style="background-color:#3C78C3">
                    <th>NEWS FEED</th>
                </tr>
        </HeaderTemplate>
        <ItemTemplate>
            <tr>
                <td valign="top">
                   <asp:Image ID="Image1" runat="server" Height="50px" Width="50px" />
                   <asp:LinkButton ID="lblPostedBy" runat="server" onclick="lblPostedBy_Click" Text='<%#DataBinder.Eval(Container,"DataItem.postedby") %>' /> &nbsp says : <br />
                   <asp:TextBox id="txtPost" runat="server"  Width="100%" textmode="multiline" text='<%#DataBinder.Eval(Container,"DataItem.scraps")%>' ReadOnly="True" BackColor="#EFF3FB" BorderStyle="None"></asp:TextBox> 
                   <%#DataBinder.Eval(Container,"DataItem.scraptime") %>
                   <br />
                   <asp:TextBox ID="TextBox2" runat="server" Visible="False" Width="80%"></asp:TextBox>
                   <asp:Button ID="btnDoneComment" runat="server" Text="Done" Visible="False" onclick="btnDoneComment_Click"/>
                   <br />
                   <hr style="border:dashed 1px blue" />
                </td>
           </tr>
        </ItemTemplate>
        <FooterTemplate>
            </table>
        </FooterTemplate>
    </asp:Repeater>

Thanks in Advance,

问候,Nikhil

为什么在这种情况下,中继器控制的onitemcommand不工作

代替"cmd. "CommandText = "select image from " + lblPostedBy.Text;"

应该是

cmd.CommandText = "select image from TableName where pby = '" + lblPostedBy.Text + "'";

更好的是,添加一个参数

cmd.CommandText = "select image from tablename where pby = @pby"

cmd.Parameters.Add(new SalParameter("@pby", lblPostedBy.Text);