Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
QuestionIs it possible to use javascript mediastream in C#? Pin
Member 1161266226-Jun-15 16:22
Member 1161266226-Jun-15 16:22 
QuestionMessage Closed Pin
26-Jun-15 16:09
Member 1085088626-Jun-15 16:09 
AnswerRe: build keylogger Pin
Dave Kreskowiak26-Jun-15 17:33
mveDave Kreskowiak26-Jun-15 17:33 
RantVisual Studio Express 2013 Installer Package Pin
Member 932620926-Jun-15 15:10
Member 932620926-Jun-15 15:10 
GeneralRe: Visual Studio Express 2013 Installer Package Pin
Gerry Schmitz26-Jun-15 16:43
mveGerry Schmitz26-Jun-15 16:43 
QuestionXmlWriter WriteString Color Pin
haithomy25-Jun-15 7:37
haithomy25-Jun-15 7:37 
AnswerRe: XmlWriter WriteString Color Pin
Dave Kreskowiak25-Jun-15 10:22
mveDave Kreskowiak25-Jun-15 10:22 
QuestionC# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 7:15
Norris Chappell25-Jun-15 7:15 
It should be inserting each row in my GridViewRow. 251 rows. Presently I have only 104 rows.
C#
protected void SubmitButton_Click(object sender, EventArgs e)
           {

               const string Query = "IF NOT EXISTS (SELECT * FROM StaffTrackingFTEData) INSERT INTO StaffTrackingFTEData ([StaffTrackingID], [EstimateHours], [EstimateFTE], [ActualHours], [ActualFTE],[Comment], [CommentBy], [Period]) VALUES ((Select StaffTracking.ID From StaffTracking where StaffTracking.CATWResourceName = @Name), @Estimatehours, @EstimateFTE, @ActualHours, @ActualFTE, @Comment, @CommentBy, @Period)";
               SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SQLStaffingConn"].ConnectionString);

               using (SqlCommand command = new SqlCommand(Query, conn))
               {
                   conn.Open();
                   command.Parameters.AddWithValue("@StaffTrackingID", SqlDbType.Int).Direction = ParameterDirection.Output;
                   foreach (GridViewRow row in gvCATW.Rows)
                   {


                       command.Parameters.AddWithValue("@Name", ((TextBox)row.FindControl("txtName")).Text);
                       command.Parameters.AddWithValue("@EstimateHours", ((TextBox)row.FindControl("txtEstimateHours")).Text);
                       command.Parameters.AddWithValue("@EstimateFTE", ((TextBox)row.FindControl("txtEstimateFTE")).Text);
                       command.Parameters.AddWithValue("@ActualHours", ((TextBox)row.FindControl("txtHours")).Text);
                       command.Parameters.AddWithValue("@ActualFTE", ((Label)row.FindControl("Label1")).Text);
                       command.Parameters.AddWithValue("@Comment", ((TextBox)row.FindControl("txtComment")).Text);
                       command.Parameters.AddWithValue("@CommentBy", ((TextBox)row.FindControl("txtCommentBy")).Text);
                       command.Parameters.AddWithValue("@Period", ((TextBox)row.FindControl("txtPeriod")).Text);


                       command.ExecuteNonQuery();
                       command.Parameters.Clear();
                   }
               }

           }

   //protected void SubmitButton_Click(object sender, EventArgs e)


modified 25-Jun-15 13:46pm.

AnswerRe: C# code is only inserting 1 record. Pin
F-ES Sitecore25-Jun-15 7:23
professionalF-ES Sitecore25-Jun-15 7:23 
AnswerRe: C# code is only inserting 1 record. Pin
Dave Kreskowiak25-Jun-15 7:31
mveDave Kreskowiak25-Jun-15 7:31 
GeneralRe: C# code is only inserting 1 record. Pin
Norris Chappell25-Jun-15 9:12
Norris Chappell25-Jun-15 9:12 
GeneralRe: C# code is only inserting 1 record. Pin
Dave Kreskowiak25-Jun-15 10:20
mveDave Kreskowiak25-Jun-15 10:20 
GeneralRe: C# code is only inserting 1 record. Pin
Norris Chappell25-Jun-15 13:05
Norris Chappell25-Jun-15 13:05 
GeneralRe: C# code is only inserting 1 record. Pin
Sascha Lefèvre25-Jun-15 14:25
professionalSascha Lefèvre25-Jun-15 14:25 
AnswerRe: C# code is only inserting a few records. Pin
Richard Deeming25-Jun-15 8:47
mveRichard Deeming25-Jun-15 8:47 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 9:16
Norris Chappell25-Jun-15 9:16 
GeneralRe: C# code is only inserting a few records. Pin
Richard Deeming25-Jun-15 9:29
mveRichard Deeming25-Jun-15 9:29 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 11:03
Norris Chappell25-Jun-15 11:03 
GeneralRe: C# code is only inserting a few records. Pin
Sascha Lefèvre25-Jun-15 14:08
professionalSascha Lefèvre25-Jun-15 14:08 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 15:20
Norris Chappell25-Jun-15 15:20 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell29-Jun-15 3:44
Norris Chappell29-Jun-15 3:44 
GeneralRe: C# code is only inserting a few records. Pin
Richard Deeming29-Jun-15 3:49
mveRichard Deeming29-Jun-15 3:49 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell29-Jun-15 4:42
Norris Chappell29-Jun-15 4:42 
GeneralRe: C# code is only inserting a few records. Pin
Richard Deeming29-Jun-15 4:44
mveRichard Deeming29-Jun-15 4:44 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell29-Jun-15 5:04
Norris Chappell29-Jun-15 5:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.