Does anyone here know anything about ASP.net?
I have a simple problem outputting to a label…can anyone help me?
Basically i’m just doing a simple math problem…
Sub calcTotal(s As Object, e As EventArgs)
Dim totalCharge As Decimal
totalCharge = amountSpent.text * .07 + 8.22
End Sub
When you submit the form it just doesn’t show up in the label…but you can tell it does something…I think it might be the issue that the label only displays string datatypes…and totalCharge is a decimal…
I’m just not sure how to get around that problem though.