• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

使用Lable控件输出九九乘法表

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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

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

<%@ 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文件添加代码。

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); 
    } 
  } 
} 

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

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

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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
详解ASP.NET Core 2.0 路由引擎之网址生成(译)发布时间:2022-02-05
下一篇:
浅谈ASP.NET Core 2.0 布局页面(译)发布时间:2022-02-05
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap