Viewing 6 posts - 1 through 7 (of 7 total)
protected void btnSave_Click(object sender, EventArgs e)
{
DataTable dataTable = new DataTable("tvpTID");
...
January 26, 2014 at 2:54 am
If I try something like this:
How to pass a tvp in C#?
protected void btnSave_Click(object sender, EventArgs e)
{
...
January 25, 2014 at 8:20 am
Oh okay!
Well now to call this SP for UI, I use this below code.. but what do I have to pass as the tvp object parameter, to enter the selected...
January 25, 2014 at 1:38 am
Thanks. So I tried this code, but it gives me error saying I must declare @TrainerID,, when I've already done that.
Create type dbo.tvpTID As TABLE
(
TrainerID int not null,
primary key (TrainerID)
)
go
alter...
January 24, 2014 at 1:14 pm
Viewing 6 posts - 1 through 7 (of 7 total)