Click here to Skip to main content
15,908,455 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Configuration Error Pin
gauthee8-Feb-07 1:38
gauthee8-Feb-07 1:38 
GeneralRe: Configuration Error Pin
Imthu9-Feb-07 19:17
Imthu9-Feb-07 19:17 
AnswerRe: Configuration Error Pin
Sylvester george8-Feb-07 1:42
Sylvester george8-Feb-07 1:42 
GeneralRe: Configuration Error Pin
_AK_8-Feb-07 1:52
_AK_8-Feb-07 1:52 
AnswerRe: Configuration Error Pin
Sandeep Akhare8-Feb-07 1:45
Sandeep Akhare8-Feb-07 1:45 
GeneralRe: Configuration Error Pin
Imthu9-Feb-07 19:17
Imthu9-Feb-07 19:17 
QuestionHow to find size of the folder. Pin
Malayil alex8-Feb-07 1:01
Malayil alex8-Feb-07 1:01 
AnswerRe: How to find size of the folder. Pin
gauthee8-Feb-07 1:07
gauthee8-Feb-07 1:07 
static private long DirSize(string path)
{
long sz = 0;
System.IO.DirectoryInfo d = new System.IO.DirectoryInfo(path);

// Get file length
foreach(System.IO.FileInfo f in d.GetFiles())
{
sz += f.Length;
}

// Recurse into directories
foreach (System.IO.DirectoryInfo dx in d.GetDirectories())
{
sz += DirSize(dx.FullName);
}
return sz;
}


Gautham

GeneralRe: How to find size of the folder. Pin
Malayil alex8-Feb-07 1:18
Malayil alex8-Feb-07 1:18 
GeneralRe: How to find size of the folder. Pin
gauthee8-Feb-07 1:19
gauthee8-Feb-07 1:19 
QuestionAjax Control TabPanel Pin
Blue_Boy8-Feb-07 1:00
Blue_Boy8-Feb-07 1:00 
AnswerRe: Ajax Control TabPanel Pin
Jesse Squire8-Feb-07 3:01
Jesse Squire8-Feb-07 3:01 
GeneralRe: Ajax Control TabPanel Pin
Blue_Boy8-Feb-07 4:44
Blue_Boy8-Feb-07 4:44 
GeneralRe: Ajax Control TabPanel Pin
Jesse Squire9-Feb-07 1:47
Jesse Squire9-Feb-07 1:47 
GeneralRe: Ajax Control TabPanel Pin
Blue_Boy9-Feb-07 4:57
Blue_Boy9-Feb-07 4:57 
Questiongetting X,Y position in gridview [modified] Pin
ayeleteric8-Feb-07 0:55
ayeleteric8-Feb-07 0:55 
JokeRe: getting X,Y position in gridview Pin
badgrs8-Feb-07 1:03
badgrs8-Feb-07 1:03 
AnswerRe: getting X,Y position in gridview Pin
badgrs8-Feb-07 1:10
badgrs8-Feb-07 1:10 
GeneralRe: getting X,Y position in gridview [modified] Pin
ayeleteric8-Feb-07 1:16
ayeleteric8-Feb-07 1:16 
QuestionSending paramter to Crystal report Pin
Marwa Bahaa8-Feb-07 0:06
Marwa Bahaa8-Feb-07 0:06 
AnswerRe: Sending paramter to Crystal report Pin
Sylvester george8-Feb-07 0:51
Sylvester george8-Feb-07 0:51 
QuestionUpgraded project Global.asax problem Pin
Russell Jones7-Feb-07 23:09
Russell Jones7-Feb-07 23:09 
AnswerRe: Upgraded project Global.asax problem Pin
Sandeep Akhare7-Feb-07 23:30
Sandeep Akhare7-Feb-07 23:30 
AnswerRe: Upgraded project Global.asax problem Pin
Sandeep Akhare7-Feb-07 23:34
Sandeep Akhare7-Feb-07 23:34 
GeneralRe: Upgraded project Global.asax problem Pin
gauthee8-Feb-07 0:31
gauthee8-Feb-07 0:31 

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.