Click here to Skip to main content
15,892,746 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem with Gridview - Shopping cart Pin
EmZan13-Apr-10 21:26
EmZan13-Apr-10 21:26 
QuestionHow to get details of users in active directories using LDAP Pin
roshankamath13-Apr-10 20:50
roshankamath13-Apr-10 20:50 
QuestionCheckbox in datagrid Pin
Morgs Morgan13-Apr-10 20:19
Morgs Morgan13-Apr-10 20:19 
AnswerRe: Checkbox in datagrid Pin
Brij13-Apr-10 20:32
mentorBrij13-Apr-10 20:32 
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 
Hi friend,
No the code does not give any trouble, just now I tried this:
foreach (DataGridItem item in contacts.Items)
{
   chkSelection = (CheckBox)item.FindControl("chkSelection");
   if (chkSelection.Checked)
   {
       string contact = contacts.Items[0].Cells[4].Text;//this retrieves the phone_num at Items[0].Cells[4]
       errors.Text = contact.ToString();//whether checked or not, not what iam expecting really.
       errors.Visible = true;
   }
}

But I want to get all phone numbers if checked, so i tried to replace:
Items[0].Cells[4]
with
Items[item].Cells[4]
and
it gives an error it can't convert
Items[item] to Items[int]

do you know I can manager to get all the phone numbers...
please help if you can
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 
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 

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.