我是靠谱客的博主 追寻保温杯,这篇文章主要介绍使用Lable控件输出九九乘法表,现在分享给大家,希望可以做个参考。

利用Lable控件输出九九乘法表,具体内容如下

首先建立一个空网站,之后选择添加新项,添加一个Web窗体。
进入.aspx文件之后,在设计界面中添加9个Lable控件。Lable控件在标准组中。得到的源代码是这样的。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="WebForm4.aspx.cs" Inherits="WebForm4" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>九九乘法表</title> </head> <body> <form id="form1" runat="server"> <div> <asp:Table ID="Table1" runat="server"> </asp:Table> <asp:Table ID="Table2" runat="server"> </asp:Table> <asp:Table ID="Table3" runat="server"> </asp:Table> <asp:Table ID="Table4" runat="server"> </asp:Table> <asp:Table ID="Table5" runat="server"> </asp:Table> <asp:Table ID="Table6" runat="server"> </asp:Table> <asp:Table ID="Table7" runat="server"> </asp:Table> <asp:Table ID="Table8" runat="server"> </asp:Table> <asp:Table ID="Table9" runat="server"> </asp:Table> </div> </form> </body> </html>

接着,要实现九九乘法表的创建,还需要在.aspx.cs文件添加代码。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 + 1; c++) { TableCell tc = new TableCell(); tr.Cells.Add(tc); if (c <= r) table.Rows[r].Cells[c].Text = ((r + 1)).ToString() + '×' + ((c + 1)).ToString() + '=' + (((r + 1) * (c + 1))).ToString(); } } form1.Controls.Add(table); } } }

运行程序,得到的效果图如下:

这样,一个九九乘法表就输出来啦!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

最后

以上就是追寻保温杯最近收集整理的关于使用Lable控件输出九九乘法表的全部内容,更多相关使用Lable控件输出九九乘法表内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(127)

评论列表共有 0 条评论

立即
投稿
返回
顶部