欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

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

时间:2020-10-25 09:56:45|栏目:.NET代码|点击:

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

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

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

上一篇:SqlCommandBuilder类批量更新excel或者CSV数据的方法

栏    目:.NET代码

下一篇:ASP.NET显示农历时间的方法

本文标题:使用Lable控件输出九九乘法表

本文地址:http://www.codeinn.net/misctech/15676.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有