Click here to Skip to main content
15,895,011 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: I want to clear cache. Pin
R. Giskard Reventlov12-Jan-11 23:07
R. Giskard Reventlov12-Jan-11 23:07 
AnswerRe: I want to clear cache. Pin
Dalek Dave12-Jan-11 23:14
professionalDalek Dave12-Jan-11 23:14 
GeneralRe: I want to clear cache. Pin
R. Giskard Reventlov12-Jan-11 23:15
R. Giskard Reventlov12-Jan-11 23:15 
GeneralRe: I want to clear cache. Pin
Dalek Dave12-Jan-11 23:29
professionalDalek Dave12-Jan-11 23:29 
GeneralRe: I want to clear cache. Pin
R. Giskard Reventlov12-Jan-11 23:36
R. Giskard Reventlov12-Jan-11 23:36 
AnswerRe: I want to clear cache. Pin
RaviRanjanKr23-Jan-11 18:20
professionalRaviRanjanKr23-Jan-11 18:20 
QuestionHow can Convert List<String> to DataSet Pin
buffering8311-Jan-11 13:49
buffering8311-Jan-11 13:49 
AnswerRe: How can Convert List to DataSet PinPopular
Not Active11-Jan-11 14:05
mentorNot Active11-Jan-11 14:05 
If you are guaranteed to always have all five columns of information in order then it would be something like this

for(int x = 0; x < middleCategory.Count; x += 5)
{
  DataRow row = ds.Table[0].NewRow;
  row[0] = middleCategory[x];
  row[1] = middleCategory[x+1];
  row[2] = middleCategory[x+2];
  row[3] = middleCategory[x+3];
  row[4] = middleCategory[x+4];

  ds.Table[0].Add(row);
}


Notice the use of code block to format the code snippet

I know the language. I've read a book. - _Madmatt

GeneralRe: Really Thank you! Pin
buffering8311-Jan-11 17:36
buffering8311-Jan-11 17:36 
Questionhow to UnSelect all rows in GridView - asp.net ? Pin
Gali197811-Jan-11 9:43
Gali197811-Jan-11 9:43 
AnswerRe: how to UnSelect all rows in GridView - asp.net ? Pin
Not Active11-Jan-11 14:06
mentorNot Active11-Jan-11 14:06 
AnswerRe: how to UnSelect all rows in GridView - asp.net ? Pin
TweakBird12-Jan-11 8:40
TweakBird12-Jan-11 8:40 
QuestionSending Status Messages Pin
indian14311-Jan-11 7:46
indian14311-Jan-11 7:46 
AnswerRe: Sending Status Messages Pin
David Mujica11-Jan-11 9:55
David Mujica11-Jan-11 9:55 
GeneralRe: Sending Status Messages Pin
indian14311-Jan-11 11:19
indian14311-Jan-11 11:19 
GeneralRe: Sending Status Messages Pin
David Mujica12-Jan-11 6:08
David Mujica12-Jan-11 6:08 
QuestionProper Procedures to Prevent Cross Site Scripting. Pin
badprog11-Jan-11 7:24
badprog11-Jan-11 7:24 
AnswerRe: Proper Procedures to Prevent Cross Site Scripting. Pin
Not Active11-Jan-11 7:37
mentorNot Active11-Jan-11 7:37 
AnswerRe: Proper Procedures to Prevent Cross Site Scripting. Pin
TweakBird12-Jan-11 8:36
TweakBird12-Jan-11 8:36 
QuestionBuffer implement Pin
Dhyanga11-Jan-11 4:03
Dhyanga11-Jan-11 4:03 
AnswerRe: Buffer implement Pin
Yusuf11-Jan-11 4:31
Yusuf11-Jan-11 4:31 
GeneralRe: Buffer implement Pin
Dhyanga11-Jan-11 4:37
Dhyanga11-Jan-11 4:37 
GeneralRe: Buffer implement Pin
David Mujica11-Jan-11 4:50
David Mujica11-Jan-11 4:50 
GeneralRe: Buffer implement Pin
Dhyanga11-Jan-11 4:57
Dhyanga11-Jan-11 4:57 
GeneralRe: Buffer implement Pin
N a v a n e e t h11-Jan-11 5:34
N a v a n e e t h11-Jan-11 5:34 

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.