Click here to Skip to main content
15,923,374 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Blog/Forum combo Pin
Jamie Nordmeyer5-Jun-08 2:14
Jamie Nordmeyer5-Jun-08 2:14 
QuestionProblem with redirects or sessions Pin
hasanali004-Jun-08 8:52
hasanali004-Jun-08 8:52 
AnswerRe: Problem with redirects or sessions Pin
Ashik Wani4-Jun-08 11:47
Ashik Wani4-Jun-08 11:47 
GeneralRe: Problem with redirects or sessions Pin
hasanali004-Jun-08 14:08
hasanali004-Jun-08 14:08 
GeneralRe: Problem with redirects or sessions Pin
Ashik Wani5-Jun-08 1:17
Ashik Wani5-Jun-08 1:17 
QuestionBinding CSV to CheckboxList Pin
stormcandi4-Jun-08 5:53
stormcandi4-Jun-08 5:53 
AnswerRe: Binding CSV to CheckboxList Pin
cpkilekofp4-Jun-08 7:14
cpkilekofp4-Jun-08 7:14 
GeneralRe: Binding CSV to CheckboxList Pin
stormcandi4-Jun-08 7:49
stormcandi4-Jun-08 7:49 
Here is the FillMultipleCheckboxeswithValue

public void FillMultipleCheckboxesWithValue(CheckBoxList cbl, string strDBValue)
{
    // this executes to fillthe checkboxes in the list have been checked from the record
    CheckBoxList chkFind = cbl;
    string strEval = strDBValue;
    //Something was passed in the string
    if (strEval != " ")
    {
        string[] arrEval;
        arrEval = strEval.Split(',');
        int iCount = chkFind.Items.Count;
        for (int i = 0; i < iCount; i++)
        {
            foreach (string str in arrEval)
            {
                if (chkFind.Items[i].Value.ToString() == str)
                    chkFind.Items[i].Selected = true;
            }
        }
    }
}


~Candi

GeneralRe: Binding CSV to CheckboxList Pin
cpkilekofp5-Jun-08 4:54
cpkilekofp5-Jun-08 4:54 
GeneralRe: Binding CSV to CheckboxList Pin
stormcandi5-Jun-08 5:48
stormcandi5-Jun-08 5:48 
GeneralRe: Binding CSV to CheckboxList Pin
cpkilekofp5-Jun-08 6:18
cpkilekofp5-Jun-08 6:18 
GeneralRe: Binding CSV to CheckboxList Pin
stormcandi5-Jun-08 6:45
stormcandi5-Jun-08 6:45 
GeneralRe: Binding CSV to CheckboxList Pin
cpkilekofp5-Jun-08 8:19
cpkilekofp5-Jun-08 8:19 
GeneralRe: Binding CSV to CheckboxList Pin
stormcandi5-Jun-08 8:24
stormcandi5-Jun-08 8:24 
GeneralRe: Binding CSV to CheckboxList Pin
cpkilekofp5-Jun-08 9:18
cpkilekofp5-Jun-08 9:18 
GeneralRe: Binding CSV to CheckboxList Pin
stormcandi5-Jun-08 9:19
stormcandi5-Jun-08 9:19 
GeneralRe: Binding CSV to CheckboxList Pin
cpkilekofp5-Jun-08 9:20
cpkilekofp5-Jun-08 9:20 
GeneralRe: Binding CSV to CheckboxList Pin
stormcandi17-Jun-08 8:39
stormcandi17-Jun-08 8:39 
QuestionUpdate panel problems... Pin
Jacob Dixon4-Jun-08 5:51
Jacob Dixon4-Jun-08 5:51 
AnswerRe: Update panel problems... Pin
SomeGuyThatIsMe4-Jun-08 8:38
SomeGuyThatIsMe4-Jun-08 8:38 
GeneralRe: Update panel problems... Pin
Jacob Dixon4-Jun-08 8:48
Jacob Dixon4-Jun-08 8:48 
GeneralRe: Update panel problems... Pin
SomeGuyThatIsMe4-Jun-08 8:53
SomeGuyThatIsMe4-Jun-08 8:53 
GeneralRe: Update panel problems... Pin
Jacob Dixon4-Jun-08 9:00
Jacob Dixon4-Jun-08 9:00 
GeneralRe: Update panel problems... Pin
SomeGuyThatIsMe4-Jun-08 9:06
SomeGuyThatIsMe4-Jun-08 9:06 
QuestionTableRow DOUBLE CLICK EVENT Pin
michael_jhons4-Jun-08 5:28
michael_jhons4-Jun-08 5:28 

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.