Click here to Skip to main content
15,886,199 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Checkbox in datagrid Pin
Abhijit Jana13-Apr-10 20:35
professionalAbhijit Jana13-Apr-10 20:35 
GeneralRe: Checkbox in datagrid Pin
Morgs Morgan13-Apr-10 21:40
Morgs Morgan13-Apr-10 21:40 
AnswerRe: Checkbox in datagrid Pin
nagendrathecoder13-Apr-10 21:10
nagendrathecoder13-Apr-10 21:10 
GeneralRe: Checkbox in datagrid Pin
Morgs Morgan13-Apr-10 21:26
Morgs Morgan13-Apr-10 21:26 
GeneralRe: Checkbox in datagrid Pin
Sandesh M Patil13-Apr-10 22:13
Sandesh M Patil13-Apr-10 22:13 
GeneralRe: Checkbox in datagrid Pin
nagendrathecoder13-Apr-10 22:20
nagendrathecoder13-Apr-10 22:20 
GeneralRe: Checkbox in datagrid Pin
nagendrathecoder13-Apr-10 22:27
nagendrathecoder13-Apr-10 22:27 
GeneralRe: Checkbox in datagrid Pin
Morgs Morgan13-Apr-10 23:42
Morgs Morgan13-Apr-10 23:42 
Hey thanks for your help...
when I do exactly like you code it works ok as it will get all the phone numbers.
But remember i only want those phone numbers where checked is true..
So i modified the code like this:
for (int i = 0; i < contacts.Items.Count; i++)
{
    foreach (DataGridItem item in contacts.Items)
    {
        chkSelection = (CheckBox)item.FindControl("chkSelection");
        if (chkSelection.Checked)
        {
            string cont = contacts.Items[i].Cells[4].Text;
            errors.Text += cont;
            errors.Visible = true;
        }
        else
        {
             errors.Text = "";
             errors.Visible = true;
        }
    }
}

here only the last row results to true when checked
I don't know why other rows are skipped even when checked.
Can you spot anything here?
GeneralRe: Checkbox in datagrid Pin
nagendrathecoder14-Apr-10 0:00
nagendrathecoder14-Apr-10 0:00 
GeneralRe: Checkbox in datagrid Pin
Morgs Morgan14-Apr-10 0:25
Morgs Morgan14-Apr-10 0:25 
GeneralRe: Checkbox in datagrid Pin
nagendrathecoder14-Apr-10 0:33
nagendrathecoder14-Apr-10 0:33 
GeneralRe: Checkbox in datagrid Pin
Morgs Morgan14-Apr-10 1:20
Morgs Morgan14-Apr-10 1:20 
GeneralRe: Checkbox in datagrid Pin
nagendrathecoder14-Apr-10 2:02
nagendrathecoder14-Apr-10 2:02 
GeneralRe: Checkbox in datagrid Pin
Morgs Morgan14-Apr-10 2:30
Morgs Morgan14-Apr-10 2:30 
GeneralRe: Checkbox in datagrid Pin
nagendrathecoder14-Apr-10 2:42
nagendrathecoder14-Apr-10 2:42 
QuestionResponse.Write in aspx file Pin
Abdul Rahman Hamidy13-Apr-10 18:17
Abdul Rahman Hamidy13-Apr-10 18:17 
AnswerRe: Response.Write in aspx file Pin
Viral Upadhyay13-Apr-10 19:26
Viral Upadhyay13-Apr-10 19:26 
AnswerRe: Response.Write in aspx file Pin
Martin Jarvis13-Apr-10 20:38
Martin Jarvis13-Apr-10 20:38 
GeneralRe: Response.Write in aspx file Pin
Abdul Rahman Hamidy16-Apr-10 18:37
Abdul Rahman Hamidy16-Apr-10 18:37 
QuestionError WebForm_InitCallback and WebForm_DoCallback is not defined Pin
Tridip Bhattacharjee13-Apr-10 8:21
professionalTridip Bhattacharjee13-Apr-10 8:21 
AnswerRe: Error WebForm_InitCallback and WebForm_DoCallback is not defined Pin
daveyerwin13-Apr-10 9:44
daveyerwin13-Apr-10 9:44 
AnswerRe: Error WebForm_InitCallback and WebForm_DoCallback is not defined Pin
T M Gray13-Apr-10 10:21
T M Gray13-Apr-10 10:21 
GeneralRe: Error WebForm_InitCallback and WebForm_DoCallback is not defined Pin
Tridip Bhattacharjee13-Apr-10 19:52
professionalTridip Bhattacharjee13-Apr-10 19:52 
QuestionApplying theme to User Control. Pin
paper6713-Apr-10 3:43
paper6713-Apr-10 3:43 
AnswerRe: Applying theme to User Control. Pin
buaaytt15-Jul-10 23:11
buaaytt15-Jul-10 23:11 

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.