ไม่สามารถรับค่าจาก textbox spinner หลังจากทีใส่ค่าเริ่มต้นด้วย dataset
โค้ด javascript
Code
<script type="text/javascript">
$(document).ready(function() {
$("#txtSpinThreshold").spinner({
min: 0, max: 999, step: 1
});
$("#txtSpinDuration").spinner({
min: 0, max: 999, step: 1
});
$("#txtSpinReset").spinner({
min: 0, max: 999, step: 1
});
});
</script>
โค้ด asp
Code
<asp:TextBox ID="txtSpinThreshold" runat="server" MaxLength="3" Width="90px"></asp:TextBox>
<asp:TextBox ID="txtSpinDuration" runat="server" MaxLength="3" Width="90px" ></asp:TextBox>
<asp:TextBox ID="txtSpinReset" runat="server" MaxLength="3" Width="90px"></asp:TextBox>
โค้ด vb ใน page load
Code
Dim Threshold As String = ds.Tables(0).Rows(0).Item("Threshold").ToString()
Dim Reset As String = ds.Tables(0).Rows(0).Item("Reset").ToString()
Dim Duration As String = ds.Tables(0).Rows(0).Item("Duration").ToString()
txtSpinThreshold.Text = Threshold
txtSpinReset.Text = Reset
txtSpinDuration.Text = Duration
คือผมเอาตัวเลขจาก Dataset มาใส่ใน textbox spinner แล้วหลังจากนั้นผมก็เอาค่าที่เปลี่ยนแล้วจาก textbox spinner ไปใช้งานต่อ
แต่ว่าค่าที่ได้มาเป็นค่าที่มาจาก Dataset ในตอนแรก ไม่ใช่หลังจากที่เปลี่ยนไป ช่วยดูทีครับว่าผมต้องเพิ่มอะไรบ้างTag : .NET, JavaScript, jQuery, Web (ASP.NET), VB.NET
ประวัติการแก้ไข 2015-07-16 18:03:14 2015-07-16 18:05:19 2015-07-16 18:07:37
Date :
2015-07-16 18:01:26
By :
ngonge
View :
801
Reply :
2
แค่คลิ๊ก/กดปุ่ม ผมก็พอเดาออกว่า เจ้าของเครื่องต้องการอะไร?
--- Data Analysis
ถ้าความต้องการของคุณอยู่บนคำถาม (หยาบฯ)
...
...
...
ยกตัวอย่างให้ดู
ปล. วันพรุ่งนี้ผมต้องโอนเงินให้เมียอีก 2 ล้านบาท
Date :
2015-07-16 18:17:50
By :
หน้าฮี
มันเกิดจาก postback
ตอบตัวเอง
Date :
2015-07-17 10:21:57
By :
ngonge
Load balance : Server 01