Click here to Skip to main content
15,899,126 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: asp.net: input string not in the right format Pin
Venkatesh Mookkan3-Jan-07 15:46
Venkatesh Mookkan3-Jan-07 15:46 
GeneralRe: asp.net: input string not in the right format Pin
aransiola4-Jan-07 3:43
aransiola4-Jan-07 3:43 
GeneralRe: asp.net: input string not in the right format Pin
Venkatesh Mookkan4-Jan-07 15:24
Venkatesh Mookkan4-Jan-07 15:24 
AnswerRe: asp.net: input string not in the right format Pin
RichardGrimmer3-Jan-07 1:18
RichardGrimmer3-Jan-07 1:18 
AnswerRe: asp.net: input string not in the right format Pin
nagendra rao s.v.3-Jan-07 2:39
nagendra rao s.v.3-Jan-07 2:39 
GeneralRe: asp.net: input string not in the right format Pin
aransiola3-Jan-07 3:16
aransiola3-Jan-07 3:16 
QuestionMultiple Columns of Checkbox in GridView Pin
varshavmane2-Jan-07 23:33
varshavmane2-Jan-07 23:33 
AnswerRe: Multiple Columns of Checkbox in GridView [modified] Pin
rama charan3-Jan-07 0:09
rama charan3-Jan-07 0:09 
you can use code something like
this for finding out what checkbox is checked or unchecked to update the database .based on position u can check checkbox value

<br />
For i As Int16 = 0 To DataGrid1.Items.Count - 1<br />
    If CType(DataGrid1.Items(i).Cells(0).Controls(1), CheckBox).Checked Then<br />
<br />
       Dim cmd As New SqlCommand("update abctable set changed='abc' where id=" & Val(DataGrid1.Items(i).Cells(1).Text))               <br />
           cmd.Connection = conn<br />
           conn.Open()<br />
           cmd.ExecuteNonQuery()<br />
           conn.Close()<br />
     End If<br />
  Next<br />
<br />



hope this might help you



enjoy..

GeneralRe: Multiple Columns of Checkbox in GridView Pin
varshavmane3-Jan-07 0:22
varshavmane3-Jan-07 0:22 
AnswerRe: Multiple Columns of Checkbox in GridView Pin
Venkatesh Mookkan3-Jan-07 0:33
Venkatesh Mookkan3-Jan-07 0:33 
GeneralRe: Multiple Columns of Checkbox in GridView Pin
varshavmane3-Jan-07 0:58
varshavmane3-Jan-07 0:58 
GeneralRe: Multiple Columns of Checkbox in GridView Pin
Venkatesh Mookkan3-Jan-07 1:10
Venkatesh Mookkan3-Jan-07 1:10 
GeneralRe: Multiple Columns of Checkbox in GridView Pin
varshavmane3-Jan-07 1:14
varshavmane3-Jan-07 1:14 
GeneralRe: Multiple Columns of Checkbox in GridView Pin
Venkatesh Mookkan3-Jan-07 1:21
Venkatesh Mookkan3-Jan-07 1:21 
GeneralRe: Multiple Columns of Checkbox in GridView Pin
varshavmane3-Jan-07 1:31
varshavmane3-Jan-07 1:31 
Questiondate functions in asp.net Pin
david boon2-Jan-07 23:29
david boon2-Jan-07 23:29 
AnswerRe: date functions in asp.net Pin
Pete O'Hanlon2-Jan-07 23:43
mvePete O'Hanlon2-Jan-07 23:43 
QuestionDesign View issues Pin
The ANZAC2-Jan-07 23:09
The ANZAC2-Jan-07 23:09 
AnswerRe: Design View issues Pin
Howard Richards3-Jan-07 0:58
Howard Richards3-Jan-07 0:58 
AnswerRe: Design View issues Pin
Chetan Ranpariya3-Jan-07 2:33
Chetan Ranpariya3-Jan-07 2:33 
GeneralRe: Design View issues Pin
RichardGrimmer3-Jan-07 4:35
RichardGrimmer3-Jan-07 4:35 
QuestionFixed header for datagrid in arbic (rtl) windows Pin
Smiles742-Jan-07 23:03
Smiles742-Jan-07 23:03 
Questionnot able to get text from textbox in datagrid in edit mode Pin
rama charan2-Jan-07 22:35
rama charan2-Jan-07 22:35 
AnswerRe: not able to get text from textbox in datagrid in edit mode Pin
Sandip Kansara2-Jan-07 23:10
Sandip Kansara2-Jan-07 23:10 
Generaldata read from datagrid in edit mode from text box is empty always Pin
rama charan2-Jan-07 23:29
rama charan2-Jan-07 23:29 

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.