这篇文章主要为大家详细介绍了使用Lable控件输出九九乘法表,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
利用Lable控件输出九九乘法表,具体内容如下
首先建立一个空网站,之后选择添加新项,添加一个Web窗体。
进入.aspx文件之后,在设计界面中添加9个Lable控件。Lable控件在标准组中。得到的源代码是这样的来源[email protected]搞@^&代*@码网。
<title>九九乘法表</title> <div> </div>
接着,要实现九九乘法表的创建,还需要在.aspx.cs文件添加代码。
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebForm4 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Table table = new Table(); for (int r = 0; r <9; r++) { TableRow tr = new TableRow(); table.Rows.Add(tr); for (int c = 0; c <r以上就是使用Lable控件输出九九乘法表的详细内容,更多请关注gaodaima搞代码网其它相关文章!