当字段为空时,隐藏gridview中的按钮

时间:2013-02-15 10:30:16

标签: asp.net button gridview visible itemtemplate

我有一个网格视图,其中一些行已附加图片。当我按下Button2时,我从sql记录中提取信息,关于服务器上哪个文件夹有图片。 这已经可以了,但是我无法让按钮只在附加了图像文件夹的行中可见。

我已经google了很长时间,发现了类似于以下的不同解决方案,但我无法让它发挥作用。 我做错了什么?

<asp:SqlDataSource ID="SqlDSodinRSSfeb" runat="server" 
    ConnectionString="<%$ ConnectionStrings:herning_brand_dk_dbConnectionString %>"                 
    SelectCommand="SELECT PubDateTime, Melding, Station, PhotoFolder FROM OdinRSS ">
</asp:SqlDataSource>    
<asp:GridView ID="GridView14" runat="server" DataSourceID="SqlDSodinRSSfeb" 
    AutoGenerateColumns="False" Width="500px" OnRowCommand="Button_RowCommand" >
    <Columns>
        <asp:BoundField DataField="PubDateTime" HeaderText="Tidspunkt" />
        <asp:BoundField DataField="Melding" HeaderText="Melding for udkaldet" />
        <asp:BoundField DataField="Station" HeaderText="Station" />
        <asp:TemplateField HeaderText="Foto" >
            <EditItemTemplate>
                <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("PhotoFolder") %>'></asp:TextBox>
            </EditItemTemplate>
            <ItemTemplate>
                <asp:Button ID="Button2" runat="server" Text="Foto" Visible='<%# Eval("PhotoFolder") != "Null" %>' 
                            CommandName="ButtonClick" CommandArgument='<%# Eval("PhotoFolder") %>'  />
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>

我的.cs

protected void Button_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandArgument != null)
    {
        switch (e.CommandName)
        {
            case "ButtonClick":
                {
                    int Folder = Convert.ToInt32(e.CommandArgument);
                    PhotoList(Folder);
                }
                break;
        }
    }
}

void PhotoList(int FolderNumber)
{
    var imagePaths = Directory.GetFiles(Server.MapPath("PhotoFolder\\" + FolderNumber));
    var imageNames = new string[imagePaths.Length];

    for (int i = 0; i < imagePaths.Length; i++)
    {
        imageNames[i] = imagePaths[i].Substring(imagePaths[i].LastIndexOf("\\") + 1);
    }

    var dt = new DataTable();
    dt.Columns.Add("ImageName", typeof(string));
    dt.Columns.Add("ImagePath", typeof(string));

    foreach (var imgName in imageNames)
    {
        DataRow dr = dt.NewRow();
        dr["ImageName"] = RemoveExtension(imgName);
        dr["ImagePath"] = "PhotoFolder/" + FolderNumber + "/" + imgName;
        dt.Rows.Add(dr);
    }
    DataList1.DataSource = dt;
    DataList1.DataBind();
}

string RemoveExtension(string imgName)
{
    return imgName
                .Replace(".jpg", "")
                .Replace(".png", "");
}

sql字段“PhotoFolder”是nvarchar(50)。如果有记录的照片,则该字段具有100和更高的数字,这将拒绝包含照片的文件夹。如果记录没有照片,则该字段包含“Null”

我也尝试过:

   <asp:Button ID="Button2" runat="server" Text="Foto" Visible='<%# Eval("PhotoFolder").ToString() != "Null" %>'

但按钮显示在所有行中,而不仅仅是“PhotoFolder”中有字符串(数字)的那些

4 个答案:

答案 0 :(得分:2)

可以在内联代码中实现简单

<asp:ImageButton ID="ibtnBranchType1" runat="server" ImageUrl='<%# "~/images/" + Eval("branchtype1")+".png" %>' Visible='<%# Convert.ToString(Eval("branchtype1"))=="" ? false : true %>'  Height="20px"/>

这里Eval(“branchtype1”)我们从数据表中获取id的值,如1,2,3等,我们的图像文件夹包含1.png,2.png,3.png等图像,

Visible='<%# Convert.ToString(Eval("branchtype1"))=="" ? false : true %>'

如果value不包含任何id,则它将为null。我们将使用三元运算符将其与空字符串进行比较。

答案 1 :(得分:1)

试试这个。

标记

Visible='<%# HideEmptyPhotoFolder(Eval("PhotoFolder")) %>'

代码隐藏

protected bool HideEmptyPhotoFolder(object photoFolder)
{
    return photoFolder != null && !String.IsNullOrEmpty(photoFolder.ToString());
}

答案 2 :(得分:0)

根据您的问题,您应该编写用于检查包含图像的行的代码, 你可以在RowDatabound事件中编写代码,并在不包含图像的那行上将button的visible属性设置为false。

答案 3 :(得分:0)

您可以在GridView RowDataBound事件中执行此操作。 http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowdatabound.aspx