Apr 19, 2004 #1 sp76 Programmer Jul 1, 2003 59 AU how can i convert the value in my textbox to SQL Server Decimal DataType before passing it to a stored procedure.
how can i convert the value in my textbox to SQL Server Decimal DataType before passing it to a stored procedure.
Apr 20, 2004 #2 stsuing Programmer Aug 22, 2001 596 US This should work since .net decimal = sql server decimal Convert.ToDecimal(textbox.text) Upvote 0 Downvote