istediğin satır ve sütunda tablo oluştur — Asp Net — C#

istediğin satır ve sütunda tablo oluştur — Asp Net — C#


tablo_olustur_asp_net3 tablo_olustur_asp_net

tablo_olustur_asp_net2

 

Deafult.aspx

[code lang=”html”]

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>

</div>

<asp:Button ID="Tikla" runat="server" OnClick="Tikla_Click" Text="5*10 Tablo Oluştur" Width="138px" />
</form>
</body>
</html>

[/code]

 

Deafult.aspx.cs

[code lang=”csharp”]

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;//www.gorselprogramlama.com
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Tikla_Click(object sender, EventArgs e)
{
Response.Write("<table border=’2’");
for (int i = 0; i < 5; i++)
{
Response.Write("<tr>");
for (int j = 0; j < 10; j++)
{
Response.Write("<td>" + i + "</td>");
}
Response.Write("</tr>");

}//www.gorselprogramlama.com
}
}

[/code]

 

Projeyi İNDİR

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir