亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Lable控件怎么輸出一個九九乘法表

發布時間:2021-03-09 17:34:02 來源:億速云 閱讀:209 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用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); 
    } 
  } 
}

運行程序,得到的效果圖如下:

使用Lable控件怎么輸出一個九九乘法表

關于使用Lable控件怎么輸出一個九九乘法表就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

雷波县| 伊金霍洛旗| 绥中县| 龙州县| 从化市| 望城县| 高尔夫| 彭山县| 芮城县| 大冶市| 科尔| 本溪市| 沾益县| 翁源县| 白河县| 朔州市| 柘荣县| 蒙山县| 张掖市| 阿勒泰市| 伊春市| 修水县| 普安县| 资兴市| 南宁市| 濮阳市| 金门县| 阿拉善左旗| 建湖县| 四平市| 资阳市| 怀宁县| 乌鲁木齐县| 山阳县| 上高县| 白水县| 菏泽市| 阿合奇县| 澄江县| 徐州市| 东方市|