0

我做了我的代码来找到HTML控件“”,我想检查“ Src ”属性是否有值,我试图添加“内部文本”但它返回NULL

<asp:DataList ID="DL_Media" runat="server"  onitemdatabound="DL_Media_ItemDataBound">
    <ItemTemplate>
        <video width="215" height="160" runat="server"  id="vd" controls>
        <source src='<%# Eval("Media_File")%>' type="video/ogg" 
            runat="server" id="source"></source>
        </video>
    </ItemTemplate>
</asp:DataList>


protected void DL_Media_ItemDataBound(object sender, DataListItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
        HtmlGenericControl video = e.Item.FindControl("vd") as HtmlGenericControl;
        HtmlGenericControl source = e.Item.FindControl("source") as HtmlGenericControl;
        if (source != null)
        {
            string x = "~/";
            string y = "";
            if (source.InnerText == x)
            {
                video.InnerText.Replace(x, y);

                DL_Media.DataBind();


            }
        }
    }
4

1 回答 1

1

尝试这个:

HtmlGenericControl source= e.Item.FindControl("source") as HtmlGenericControl;
string src = source.Attributes["src"].ToString();

来源:如何:阅读 Web 表单页面中控件的 HTML 属性

于 2013-10-29T14:54:35.747 回答