Click here to Skip to main content
15,904,346 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How do i Print and Export Crystal Report??? [modified] Pin
keyboard warrior22-May-08 7:46
keyboard warrior22-May-08 7:46 
QuestionASP.net calendar control questions? Pin
pankazmittal22-May-08 5:05
pankazmittal22-May-08 5:05 
AnswerRe: ASP.net calendar control questions? Pin
Laddie22-May-08 18:12
Laddie22-May-08 18:12 
Question[Message Deleted] Pin
Saba0222-May-08 4:26
Saba0222-May-08 4:26 
AnswerRe: How i can Compare date for new releases ? Pin
eyeseetee22-May-08 4:34
eyeseetee22-May-08 4:34 
AnswerRe: How i can Compare date for new releases ? Pin
N a v a n e e t h22-May-08 4:52
N a v a n e e t h22-May-08 4:52 
GeneralRe: How i can Compare date for new releases ? [modified] Pin
Saba0222-May-08 4:59
Saba0222-May-08 4:59 
QuestionCheckBoxList: which checkbox selection unselection triggered my event? Pin
Herman<T>.Instance22-May-08 3:16
Herman<T>.Instance22-May-08 3:16 
CheckBoxList cbl = (CheckBoxList)sender;
        if (cbl.Items[0].Selected && cbl.SelectedIndex.Equals(0))
        {
            for (int items = 1; items < cbl.Items.Count; items++)
            {
                if (!cbl.Items[items].Selected)
                    cbl.Items[items].Selected = true;
            }
        }
        else if (!cbl.Items[0].Selected && cbl.SelectedIndex.Equals(1))
        {
            for (int items = 1; items < cbl.Items.Count; items++)
            {
                if (cbl.Items[items].Selected)
                    cbl.Items[items].Selected = false;
            }
        }

I use this above code to check all items in a CheckBoxList. But if all checkboxes are check and I uncheck some the SelectedValue = 0 of the CheckBoxList. In that case it wil check all checkboxes again. How to prevent this?
AnswerRe: CheckBoxList: which checkbox selection unselection triggered my event? Pin
gnjunge22-May-08 20:46
gnjunge22-May-08 20:46 
QuestionAccess other pc desk screen by internet Pin
harun622-May-08 2:50
harun622-May-08 2:50 
AnswerRe: Access other pc desk screen by internet Pin
Christian Graus22-May-08 2:51
protectorChristian Graus22-May-08 2:51 
QuestionProblem in binding dataset value with HTML table. Pin
Member 410217122-May-08 2:43
Member 410217122-May-08 2:43 
AnswerRe: Problem in binding dataset value with HTML table. Pin
Christian Graus22-May-08 2:51
protectorChristian Graus22-May-08 2:51 
QuestionConverting winapp to webapp and need to position childcontrols Pin
ErikZ22-May-08 2:30
ErikZ22-May-08 2:30 
QuestionProblem with gridview checkbox [modified] Pin
pinna_hari22-May-08 2:06
pinna_hari22-May-08 2:06 
AnswerRe: Problem with gridview checkbox Pin
NetBot22-May-08 2:35
NetBot22-May-08 2:35 
GeneralRe: Problem with gridview checkbox Pin
pinna_hari22-May-08 19:00
pinna_hari22-May-08 19:00 
GeneralRe: Problem with gridview checkbox Pin
sukkureddy22-May-08 21:14
sukkureddy22-May-08 21:14 
GeneralRe: Problem with gridview checkbox Pin
pinna_hari23-May-08 1:38
pinna_hari23-May-08 1:38 
AnswerRe: Problem with gridview checkbox Pin
eyeseetee22-May-08 3:07
eyeseetee22-May-08 3:07 
QuestionIE6 chopping off page content on Hyperlink first click Pin
markymark8222-May-08 1:34
markymark8222-May-08 1:34 
AnswerRe: IE6 chopping off page content on Hyperlink first click Pin
markymark8222-May-08 4:03
markymark8222-May-08 4:03 
QuestionProblem In IE while Embed .swf file in aspx page Pin
Guvera22-May-08 1:17
Guvera22-May-08 1:17 
QuestionSoftwares for integration of Card swipe machine with .net application Pin
miniThomas22-May-08 1:11
miniThomas22-May-08 1:11 
AnswerRe: Softwares for integration of Card swipe machine with .net application Pin
eyeseetee22-May-08 1:18
eyeseetee22-May-08 1:18 

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.