如何使用 c# 将按钮矩阵添加到 asp .net 页

本文关键字:添加 asp net 何使用 按钮 | 更新日期: 2023-09-27 18:37:23

您对如何在ASPX中将相同大小的按钮(50列* 10行)的整个矩阵添加到页面有什么建议吗?页面甚至可以在加载时自动填充按钮。我的第一个想法是使用双 FOR:

FOR(i=1; i<=10;i++)
{
FOR(j=1; j<=50;++)
{
Create button;
Add button to panel; (to the right of the previous button)
Set button caption to ij; 
}
Go to the next row of buttons.
}

如何转到下一行?这是什么编码,尤其是放置按钮?我的第一个想法是创建一个段落,但不确定如何在 C# 中做到这一点。在ASPX中,我知道这是一个插入<p>.的问题有没有比这种情况更好的选择?谢谢!

如何使用 c# 将按钮矩阵添加到 asp .net 页

您可以添加一行,然后添加 System.Web.UI.HtmlControls.GenericControl("br") 以开始新行