Click here to Skip to main content
15,917,991 members
Home / Discussions / C#
   

C#

 
GeneralRe: confusion with datatable sorting/finding Pin
melanieab21-Sep-05 10:23
melanieab21-Sep-05 10:23 
QuestionHelp! C#/ASP.NET/Dreamweaver Pin
Cpen21-Sep-05 7:29
Cpen21-Sep-05 7:29 
QuestionChange Font for DataGrid Column Pin
zaboboa21-Sep-05 6:27
zaboboa21-Sep-05 6:27 
AnswerRe: Change Font for DataGrid Column Pin
deep721-Sep-05 19:30
deep721-Sep-05 19:30 
GeneralRe: Change Font for DataGrid Column Pin
zaboboa22-Sep-05 2:56
zaboboa22-Sep-05 2:56 
QuestionUpdate MySQL databases Pin
Ming Luo21-Sep-05 6:19
Ming Luo21-Sep-05 6:19 
QuestionEditable tab page title Pin
MotherNuBBeR21-Sep-05 6:06
MotherNuBBeR21-Sep-05 6:06 
AnswerRe: Editable tab page title Pin
Dario Solera21-Sep-05 6:25
Dario Solera21-Sep-05 6:25 
QuestionHow to read text from the interface of another application? Pin
AndyH7021-Sep-05 5:38
AndyH7021-Sep-05 5:38 
QuestionMultiline Crystal Reports (Wrap Word) Pin
| Muhammad Waqas Butt |21-Sep-05 5:17
professional| Muhammad Waqas Butt |21-Sep-05 5:17 
Questioninstalled applications Pin
Mridang Agarwalla21-Sep-05 4:18
Mridang Agarwalla21-Sep-05 4:18 
AnswerRe: installed applications Pin
David Stone21-Sep-05 10:38
sitebuilderDavid Stone21-Sep-05 10:38 
QuestionActive X Control In C# Web App Pin
Adrian Metcalfe21-Sep-05 4:16
Adrian Metcalfe21-Sep-05 4:16 
AnswerRe: Active X Control In C# Web App Pin
Judah Gabriel Himango21-Sep-05 4:41
sponsorJudah Gabriel Himango21-Sep-05 4:41 
GeneralRe: Active X Control In C# Web App Pin
Adrian Metcalfe21-Sep-05 5:11
Adrian Metcalfe21-Sep-05 5:11 
GeneralRe: Active X Control In C# Web App Pin
Judah Gabriel Himango21-Sep-05 5:47
sponsorJudah Gabriel Himango21-Sep-05 5:47 
GeneralRe: Active X Control In C# Web App Pin
Adrian Metcalfe21-Sep-05 21:22
Adrian Metcalfe21-Sep-05 21:22 
GeneralRe: Active X Control In C# Web App Pin
Judah Gabriel Himango22-Sep-05 4:04
sponsorJudah Gabriel Himango22-Sep-05 4:04 
GeneralRe: Active X Control In C# Web App Pin
Adrian Metcalfe22-Sep-05 4:35
Adrian Metcalfe22-Sep-05 4:35 
GeneralRe: Active X Control In C# Web App Pin
Judah Gabriel Himango22-Sep-05 5:49
sponsorJudah Gabriel Himango22-Sep-05 5:49 
GeneralRe: Active X Control In C# Web App Pin
Adrian Metcalfe22-Sep-05 21:42
Adrian Metcalfe22-Sep-05 21:42 
GeneralRe: Active X Control In C# Web App Pin
Judah Gabriel Himango23-Sep-05 4:30
sponsorJudah Gabriel Himango23-Sep-05 4:30 
QuestionIncluding a C struct in a C# application Pin
Cabbi21-Sep-05 4:00
Cabbi21-Sep-05 4:00 
AnswerRe: Including a C struct in a C# application Pin
Judah Gabriel Himango21-Sep-05 7:40
sponsorJudah Gabriel Himango21-Sep-05 7:40 
QuestionA question about the "checkboxlist" Pin
shanzy21-Sep-05 3:33
shanzy21-Sep-05 3:33 
Hi, codeprojecter

I use "checkboxlist" to show some information of the registeruser
-------------------------------------------------
for example:

I have 4 items in the checkboxlist,when first run there are 4 items in the page ,and when I check 2 and then click the submit button, the page will refresh and just show me the checked items,don't show unchecked items.
-------------------------------------------------
I don't know how to do this thing,

my code is below:

private void submit_Click(object sender, System.EventArgs e)
{
for (int i=0; i<(this.chkboxGroup.Items.Count-1);i++)
{
if (this.chkboxGroup.Items[i].Selected)
{
//I don't know the code here,please help me!!

}
}
}
-------------------------------------------------------------------------
Thank you very much!

shanzy

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.