2015年6月20日 星期六

asp.net TextBox 值相加

參考來源:[習題]三個數字相加....(使用TextBox,很基礎的題目)
---
只要加入:
1. TextBox控制項加入 AutoPostBack="true"
2.
Protected Sub TextBox3_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
         Dim sum As Integer =  CInt(TextBox3.Text) + CInt(TextBox2.Text) + CInt(TextBox1.Text)
         Label1.Text = String.Format("{0:C}", sum)
         '--轉換成貨幣格式
End Sub

沒有留言:

張貼留言