Click here to Skip to main content
15,900,511 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
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 
Perhaps you should change it to this:

public void dvGetMoreData_PageIndexChanging(object sender, DetailsViewPageEventArgs e)    
{        
        dvGetMoreData.PageIndex = e.NewPageIndex;
        BindData();    
}

public void FillControls()
{
//this executes when the form view is populated so the services are populated correctly            int intSN = Convert.ToInt32(Request.QueryString["LookUp"].ToString());           
Selections db = new Selections();           
DataSet ds = db.Services(intSNo);           
int iCount = ds.Tables[0].Rows.Count;           

    if (iCount != 0)           
    {
        if (dvGetMoreData.CurrentMode != DetailsViewMode.Insert)
        {
            FillMultipleCheckboxesWithValue((CheckBoxList)dvGetMoreData.FindControl("cblSvcs"), 
               ds.Tables[0].Rows[dvGetMoreData.PageIndex]["Services"].ToString));                  
        }           
    }    
}

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 
AnswerRe: TableRow DOUBLE CLICK EVENT Pin
ToddHileHoffer4-Jun-08 9:00
ToddHileHoffer4-Jun-08 9:00 
GeneralRe: TableRow DOUBLE CLICK EVENT Pin
michael_jhons4-Jun-08 21:41
michael_jhons4-Jun-08 21:41 
AnswerRe: TableRow DOUBLE CLICK EVENT Pin
www.Developerof.NET4-Jun-08 22:38
www.Developerof.NET4-Jun-08 22:38 
GeneralRe: TableRow DOUBLE CLICK EVENT Pin
michael_jhons4-Jun-08 23:32
michael_jhons4-Jun-08 23:32 
RantRe: TableRow DOUBLE CLICK EVENT Pin
ToddHileHoffer5-Jun-08 2:12
ToddHileHoffer5-Jun-08 2:12 

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.