Hi,
i have made a dynamic form in C# where in the textboxes r made dynamically .
so now i have too run some stored procedures.
normally when u write code for the textboxes associated with it as
SqlCommand mysql1 = new SqlCommand("usp _calDiameter", coon);
mysql1.CommandT ype = CommandType.Sto redProcedure;
mysql1.Connecti on = coon;
mysql1.Paramete rs.Add(new SqlParameter("@ Flowrate", Flowrate));
mysql1.Paramete rs.Add(new SqlParameter("@ SpecificVelocit y", SpecificVelocit y));
mysql1.Paramete rs.Add(new SqlParameter("@ PSFID", PSFID));
but the prob is that im makin textboxes dynamically so if anyone could help me with the code to execute stored procedures using this dynamic textboxes
hope u people could help me out soon
Bye........
i have made a dynamic form in C# where in the textboxes r made dynamically .
so now i have too run some stored procedures.
normally when u write code for the textboxes associated with it as
SqlCommand mysql1 = new SqlCommand("usp _calDiameter", coon);
mysql1.CommandT ype = CommandType.Sto redProcedure;
mysql1.Connecti on = coon;
mysql1.Paramete rs.Add(new SqlParameter("@ Flowrate", Flowrate));
mysql1.Paramete rs.Add(new SqlParameter("@ SpecificVelocit y", SpecificVelocit y));
mysql1.Paramete rs.Add(new SqlParameter("@ PSFID", PSFID));
but the prob is that im makin textboxes dynamically so if anyone could help me with the code to execute stored procedures using this dynamic textboxes
hope u people could help me out soon
Bye........
Comment