How to insert null value in numeric column of Sql table using insert querry in C#.net(Window appl)
I want 2 insert null value in numeric column if it is blank
i have us foll code bt it is giving me err:
vDr["Drg_Days"] = (txtDrgDays.Text==""?null:txtDrgDays.Text);