C
Chumley the Walrus
I'm trying to insert a value into sql dbase, the value "amount" is a
money datatype (currency). Below is the parameter for the "amount"
value:
cmd.Parameters.Add(New SQLParameter("@amount", frmamount.text))
....and how I am grabbing the "amount" from the textbox control:
<asp:textbox id="frmamount" class="inputBox-gr" runat="server" />
....but I need to do something extra with the SQL Parameter (in classic
asp, something like a CCur or CInt function did the trick).
????
chumley
money datatype (currency). Below is the parameter for the "amount"
value:
cmd.Parameters.Add(New SQLParameter("@amount", frmamount.text))
....and how I am grabbing the "amount" from the textbox control:
<asp:textbox id="frmamount" class="inputBox-gr" runat="server" />
....but I need to do something extra with the SQL Parameter (in classic
asp, something like a CCur or CInt function did the trick).
????
chumley