gpt4 book ai didi

c# - HtmlGenericControl ("td") colspan

转载 作者:行者123 更新时间:2023-11-30 22:23:45 27 4
gpt4 key购买 nike

我是 asp.net c# 的新手,所以请任何人帮助我编写以下代码:

var td1 = new HtmlGenericControl("td");

我怎样才能使这个 td colspan 为任意值?

甚至如何添加 id 或 class 值?

最佳答案

您需要将其添加到HtmlGenericControl.Attributes 集合

HtmlControl.Attributes Property Gets a collection of all attribute name and value pairs expressed on a server control tag within the ASP.NET page.

示例

var td1 = new HtmlGenericControl("td");
td1.Attributes.Add("colspan", "1"); // replace "1" with the correct value.

更多信息

关于c# - HtmlGenericControl ("td") colspan,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13241698/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com