Miktar ve indirime göre tutar hesapla — Asp Net — C#

Miktar ve indirime göre tutar hesapla — Asp Net — C#

indirim

 

indirim2 indirim3 indirim4

 

Default.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>
<style type="text/css">
.auto-style1 {
width: 100%;
}
.auto-style2 {
width: 157px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>

<table class="auto-style1">
<tr>
<td class="auto-style2">
Fiyat :</td>
<td><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">
Miktar :</td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">
İndirim :</td>
<td>
<asp:CheckBox ID="CheckBox1" runat="server" Text="Personel ( % 5 )" />
<asp:CheckBox ID="CheckBox2" runat="server" Text="Öğrenci ( % 2 )" />
</td>
</tr>
<tr>
<td class="auto-style2">
Tutar :</td>
<td>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</td>
</tr>
<tr>
<td class="auto-style2">

<asp:Button ID="Tikla" runat="server" OnClick="Tikla_Click" Text="Hesapla" Width="106px" />
</td>
<td>&nbsp;</td>
</tr>
</table>
</div>
</form>
</body>
</html>

[/code]

 

Default.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)
{
double fiyat = Convert.ToDouble(TextBox1.Text);
double miktar = Convert.ToDouble(TextBox2.Text);
double tutar = fiyat * miktar;
if (CheckBox1.Checked == true) tutar = tutar * 0.95;
if (CheckBox2.Checked == true) tutar = tutar * 0.98;
Label1.Text = tutar.ToString();
}//www.gorselprogramlama.com
}

[/code]

 

Projeyi İNDİR

Bir yanıt yazın

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