Vraag : Het Probleem van RowUpdating van GridView

Hello is de Deskundigen,
There een probleem aangaande mijn commandtextkoord. Omdat het TextBox2 object.

Please geen hulp…

Regards
kan vinden
" codeBody "
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
" notpretty "
protected nietige GridView2_RowUpdating (objecten afzender, GridViewUpdateEventArgs e)
    {
        SqlConnection MyNewConnection3 = nieuwe SqlConnection ();
        SqlCommand MyNewQuery3 = nieuwe SqlCommand ();


        MyNewConnection3.ConnectionString = „Gegevens Source=. ; Aanvankelijke Catalog=FOREVER; Gebruiker - identiteitskaart =sa; Password=1“;
        MyNewConnection3.Open ();
        MyNewQuery3.Connection = MyNewConnection3;

        


       
        
       


        MyNewQuery3.CommandText = „PLAATS DATEFORMAT DMY UPDATE IAS_ALLOCATIONS“ +
                 „PLAATS [AllQty] =“ + GridView2.SelectedRow.FindControl („TextBox2“) .GetType () +
          „WAAR AllocationID='" + GridView1.SelectedRow.Cells [1]. Text.Trim () + „'“ +
          „EN Barcode='" + GridView2.SelectedRow.Cells [2]. Text.Trim () + „'“;


        //SqlCommand cmd = nieuwe SqlCommand (strSQL, cn);
        //cmd.CommandTimeout = 0;
        //if (cn. Staat == ConnectionState.Closed)
        // {
        // cn. Open ();
        //}
        MyNewQuery3.ExecuteNonQuery ();
        MyNewConnection3.Close ();

    }

Antwoord : Het Probleem van RowUpdating van GridView


Als [AllQty] een tekstkolom is, dan moet u de waarde van de Tekst binnen enige citaten plaatsen zoals hieronder:

Lijn 20: „PLAATS [AllQty] = '“ + ((TextBox) GridView2.SelectedRow.FindControl („TextBox2“)). Tekst +“ '„+
Andere oplossingen  
 
programming4us programming4us