-1

我有控制权,例如:

<asp:Image runat="server" ID="IMG_id" ClientIDMode="Static" data-test ='<%=Field %>' />

以及代码隐藏,例如:

namespace Namespace
{
  public partial class ViewPage : Base
  {
    public string Field = "field test value";
  }
}

但它不起作用。如何在 ascx 页面上设置此属性?

4

1 回答 1

0

如何:为 ASP.NET 网页中的控件设置 HTML 属性

放:

IMG_id.Attributes.Add("data-test", "whatever");

得到:

string att = IMG_id.Attributes["data-test"].ToString();
于 2013-11-11T11:00:51.180 回答