|
|
|
สร้างเงื่อนไขของราคาสินค้าที่อยู่ใน listbox ในราคาที่ต่างกัน ยังไงครับ |
|
|
|
|
|
|
|
กำไม่มีใครตอบเลย
|
|
|
|
|
Date :
2011-01-12 12:57:22 |
By :
ผมไม่เคยเรียน asp.net |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 วันแล้ว ไม่รู้จะช้าไปหรือป่าว สงสัยจะช้าไปแล้วล่ะ งั้นเอาไว้ดูเป็นอุดทาหอน ละกันนะครับ สำหรับผู้ที่มีปัญหา
Code (ASP)
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
เลือกรายการ :
<select id="sltProduct" runat="server">
<option Value="1">ปาปริก้า</option>
<option Value="2">โปเต้</option>
<option Value="3">ฮานามิ</option>
</select>
จำนวน :
<input type="text" id="txtUnit" runat="server">
ราคาต่อหน่วย :
<input type="text" id="txtPricePerUnit" runat="server">
<input type="submit" id="btnsubmit" runat="server" />
</div>
<div id="sumDisplay" runat="server"></div>
</form>
</body>
</html>
.cs
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack)
{
sumDisplay.InnerText = DoOperation(
sltProduct.Items[sltProduct.SelectedIndex].Text,
txtUnit.Value,
txtPricePerUnit.Value);
}
else
{
sumDisplay.InnerText = "กรุณากรอกข้อมูล";
}
}
private string DoOperation(string name, string unit, string pricePerUnit)
{
if (name == null || unit == null || pricePerUnit == null)
{
return "ต้องกรอกข้อมูลให้ครบถ้วน";
}
int numUnit, numPricePerUnit;
if (!Int32.TryParse(unit, out numUnit))
{
return "ข้อมูลจำนวนไม่เป็นตัวเลข";
}
if (!Int32.TryParse(pricePerUnit, out numPricePerUnit))
{
return "ข้อมูลจำนวนไม่เป็นตัวเลข";
}
return "ราคาที่ต้องจ่ายของ" + name + " = " + (numUnit * numPricePerUnit);
}
}
.asp
|
ประวัติการแก้ไข 2011-01-20 08:47:56
|
|
|
|
Date :
2011-01-20 08:46:39 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|