Click here to Skip to main content
15,888,527 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: need a help regarding chat program in asp.net(c#) Pin
Abhijit Jana7-Dec-09 1:01
professionalAbhijit Jana7-Dec-09 1:01 
AnswerRe: need a help regarding chat program in asp.net(c#) Pin
Abhishek Sur7-Dec-09 4:03
professionalAbhishek Sur7-Dec-09 4:03 
GeneralRe: need a help regarding chat program in asp.net(c#) Pin
dan!sh 7-Dec-09 6:26
professional dan!sh 7-Dec-09 6:26 
GeneralRe: need a help regarding chat program in asp.net(c#) Pin
Abhishek Sur7-Dec-09 6:39
professionalAbhishek Sur7-Dec-09 6:39 
QuestionPDF Download Error. Pin
nccs12346-Dec-09 21:51
nccs12346-Dec-09 21:51 
AnswerRe: PDF Download Error. Pin
Abhishek Sur7-Dec-09 0:48
professionalAbhishek Sur7-Dec-09 0:48 
GeneralRe: PDF Download Error. Pin
nccs12347-Dec-09 18:10
nccs12347-Dec-09 18:10 
Questioncheckbox list control Pin
mylogics6-Dec-09 20:49
professionalmylogics6-Dec-09 20:49 
hii
i want that at a time only one item can be selected in a text box.for this i have written following code at selected index changed event but its not working f9.plz tell me where m i wrong...

protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        
        for (int i=0; i < CheckBoxList1.Items.Count-1; i++)
        {
            if (CheckBoxList1.Items[i].Selected == true)
            {
                for (int j = i + 1; j <= CheckBoxList1.Items.Count - 1; j++)
                {
                    
                       // CheckBoxList1.Items[k].Selected = false;
                        CheckBoxList1.Items[j].Selected = false;
                   

                }
            }
            else
            {
                CheckBoxList1.Items[i].Selected = false;
            }
            
            
        }
    }

AnswerRe: checkbox list control Pin
N a v a n e e t h6-Dec-09 20:56
N a v a n e e t h6-Dec-09 20:56 
GeneralRe: checkbox list control Pin
mylogics6-Dec-09 20:59
professionalmylogics6-Dec-09 20:59 
GeneralRe: checkbox list control Pin
Abhishek Sur6-Dec-09 21:14
professionalAbhishek Sur6-Dec-09 21:14 
GeneralRe: checkbox list control Pin
Abhijit Jana6-Dec-09 21:19
professionalAbhijit Jana6-Dec-09 21:19 
GeneralRe: checkbox list control Pin
Abhishek Sur6-Dec-09 21:34
professionalAbhishek Sur6-Dec-09 21:34 
AnswerRe: checkbox list control Pin
ketand17-Dec-09 0:13
ketand17-Dec-09 0:13 
QuestionMaking Forum in asp.net Pin
Any_India6-Dec-09 20:09
Any_India6-Dec-09 20:09 
AnswerRe: Making Forum in asp.net Pin
Abhijit Jana6-Dec-09 20:24
professionalAbhijit Jana6-Dec-09 20:24 
AnswerRe: Making Forum in asp.net Pin
manikebs7-Dec-09 0:29
manikebs7-Dec-09 0:29 
GeneralRe: Making Forum in asp.net Pin
Ashfield7-Dec-09 1:23
Ashfield7-Dec-09 1:23 
QuestionGetting cell values for selected rows in server side Pin
NK76-Dec-09 18:19
NK76-Dec-09 18:19 
AnswerRe: Getting cell values for selected rows in server side Pin
Nishant Singh6-Dec-09 19:35
Nishant Singh6-Dec-09 19:35 
GeneralRe: Getting cell values for selected rows in server side Pin
NK77-Dec-09 23:34
NK77-Dec-09 23:34 
QuestionWhat exactly Difference between Application and Session ? Pin
satyamzen6-Dec-09 14:47
satyamzen6-Dec-09 14:47 
AnswerRe: What exactly Difference between Application and Session ? Pin
Dennis Dykstra6-Dec-09 16:23
Dennis Dykstra6-Dec-09 16:23 
AnswerRe: What exactly Difference between Application and Session ? PinPopular
Abhijit Jana6-Dec-09 16:48
professionalAbhijit Jana6-Dec-09 16:48 
AnswerRe: What exactly Difference between Application and Session ? Pin
Dinesh Mani6-Dec-09 20:30
Dinesh Mani6-Dec-09 20:30 

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.