最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時間:2017年11月05日 15:07:36   作者:Chinnell  
這篇文章主要為大家詳細介紹了使用Lable控件輸出九九乘法表,具有一定的參考價值,感興趣的小伙伴們可以參考一下

利用Lable控件輸出九九乘法表,具體內(nèi)容如下

首先建立一個空網(wǎng)站,之后選擇添加新項,添加一個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> 

接著,要實現(xiàn)九九乘法表的創(chuàng)建,還需要在.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); 
    } 
  } 
} 

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

這樣,一個九九乘法表就輸出來啦!

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

最新評論

河东区| 错那县| 华容县| 扶余县| 方山县| 鹤岗市| 醴陵市| 辽阳县| 昭觉县| 二连浩特市| 萍乡市| 大渡口区| 长治市| 迁安市| 泽州县| 印江| 涟水县| 谷城县| 雷山县| 兴隆县| 洛南县| 兰坪| 浦县| 都江堰市| 仙桃市| 达州市| 济南市| 中西区| 马尔康县| 胶南市| 温泉县| 华亭县| 思茅市| 白玉县| 邢台县| 什邡市| 邳州市| 上思县| 北票市| 凌云县| 杂多县|