Click here to Skip to main content
15,906,947 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Cancel a postback Pin
theJazzyBrain22-Feb-07 6:13
theJazzyBrain22-Feb-07 6:13 
AnswerRe: Cancel a postback Pin
Jesse Squire22-Feb-07 6:31
Jesse Squire22-Feb-07 6:31 
AnswerRe: Cancel a postback Pin
Marcus J. Smith22-Feb-07 8:03
professionalMarcus J. Smith22-Feb-07 8:03 
QuestionSiteMapPath stability concerns Pin
icestatue22-Feb-07 5:44
icestatue22-Feb-07 5:44 
Questionchange visible value Pin
netJP12L22-Feb-07 5:43
netJP12L22-Feb-07 5:43 
AnswerRe: change visible value Pin
Sandeep Akhare27-Feb-07 1:43
Sandeep Akhare27-Feb-07 1:43 
GeneralRe: change visible value Pin
netJP12L27-Feb-07 3:25
netJP12L27-Feb-07 3:25 
QuestionAjax Accordion Control Pin
peter.bellen@qsm-europe.com22-Feb-07 4:28
peter.bellen@qsm-europe.com22-Feb-07 4:28 
When working with the Ajax Accordion control and filling it with data from a dataset; it only accepts the last entries on the last pane.
Why doesn't it accept earlier data in the dataset?
F.i. if i have 3 records in the dataset only the data from record 3 is accepted in pane 3 ; no data is accepted in pane 1 and 2 (no header and no content; Does somebody have a clue?????

DataSet dsAnalyse = new DataSet();
dsAnalyse = CLSPMTDatabaseGeneral.SelectAccordion(datDate);
DataTable DT = dsAnalyse.Tables[0];

AccordionM2.Panes.Clear();

int i = 0;

foreach (DataRow DR in DT.Rows)
{
AjaxControlToolkit.AccordionPane panel = new AjaxControlToolkit.AccordionPane();

lt.Text = DR["PanelMessage"].ToString();
panel.HeaderContainer.Controls.Add(lt);

lb.Text = DR["PanelMessage"].ToString();
panel.ContentContainer.Controls.Add(lb);

AccordionM2.Panes.Add(panel);

i = i + 1;
}

bellenp@schneider.com
AnswerRe: Ajax Accordion Control Pin
Jesse Squire22-Feb-07 4:49
Jesse Squire22-Feb-07 4:49 
QuestionHow do I connect from a Webfarm not on domain to a server on a domain? Pin
MacSpudster22-Feb-07 4:14
professionalMacSpudster22-Feb-07 4:14 
AnswerRe: How do I connect from a Webfarm not on domain to a server on a domain? Pin
icestatue22-Feb-07 5:50
icestatue22-Feb-07 5:50 
Questionhow to align dynamically created web control Pin
mohd imran abdul aziz22-Feb-07 2:09
mohd imran abdul aziz22-Feb-07 2:09 
AnswerRe: how to align dynamically created web control Pin
Sandeep Akhare22-Feb-07 2:29
Sandeep Akhare22-Feb-07 2:29 
AnswerRe: how to align dynamically created web control Pin
Not Active22-Feb-07 2:50
mentorNot Active22-Feb-07 2:50 
QuestionHow to create a custom control in web application Pin
sribachana22-Feb-07 2:06
sribachana22-Feb-07 2:06 
AnswerRe: How to create a custom control in web application Pin
Sandeep Akhare22-Feb-07 2:25
Sandeep Akhare22-Feb-07 2:25 
QuestionProblem with Delete / Insert resetting GridView datasource Filter String Pin
Tristan Rhodes22-Feb-07 1:48
Tristan Rhodes22-Feb-07 1:48 
QuestionHow do i create a column at the end of the datagrid Pin
www.Developerof.NET22-Feb-07 1:30
www.Developerof.NET22-Feb-07 1:30 
AnswerRe: How do i create a column at the end of the datagrid Pin
Michael Sync22-Feb-07 16:12
Michael Sync22-Feb-07 16:12 
QuestionTravel on one website through .net coding Pin
yasotha.p22-Feb-07 0:46
yasotha.p22-Feb-07 0:46 
AnswerRe: Travel on one website through .net coding Pin
Sylvester george22-Feb-07 0:56
Sylvester george22-Feb-07 0:56 
QuestionDeploying my web application Pin
Nada Adel22-Feb-07 0:25
Nada Adel22-Feb-07 0:25 
AnswerRe: Deploying my web application [modified] Pin
Harini N K22-Feb-07 0:52
Harini N K22-Feb-07 0:52 
GeneralRe: Deploying my web application Pin
Sylvester george22-Feb-07 1:05
Sylvester george22-Feb-07 1:05 
GeneralRe: Deploying my web application Pin
Nada Adel22-Feb-07 2:13
Nada Adel22-Feb-07 2:13 

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.