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

ASP.NET

 
AnswerRe: how to use the repeater ? Pin
Sathesh Sakthivel31-Aug-06 23:36
Sathesh Sakthivel31-Aug-06 23:36 
QuestionReading a folder in asp.net using c# Pin
Malayil alex31-Aug-06 21:11
Malayil alex31-Aug-06 21:11 
AnswerRe: Reading a folder in asp.net using c# Pin
REA_ANDREW31-Aug-06 21:19
REA_ANDREW31-Aug-06 21:19 
GeneralRe: Reading a folder in asp.net using c# Pin
Malayil alex31-Aug-06 22:56
Malayil alex31-Aug-06 22:56 
AnswerRe: Reading a folder in asp.net using c# Pin
CWIZO31-Aug-06 21:21
CWIZO31-Aug-06 21:21 
GeneralRe: Reading a folder in asp.net using c# Pin
REA_ANDREW31-Aug-06 21:24
REA_ANDREW31-Aug-06 21:24 
GeneralRe: Reading a folder in asp.net using c# Pin
CWIZO31-Aug-06 21:33
CWIZO31-Aug-06 21:33 
AnswerRe: Reading a folder in asp.net using c# [modified] Pin
pradeep kumarappagari31-Aug-06 22:35
pradeep kumarappagari31-Aug-06 22:35 
go through the code ull get the solution

using System;
using System.IO;

namespace ConsoleApplication1
{

public class sysio2
{
public static void Main()
{
FileInfo[] F;

DirectoryInfo D = new DirectoryInfo(@"c:\abc");
F =D.GetFiles("*.*");
foreach(FileInfo i in F)
{
Console.WriteLine(i);
}
Console.ReadLine();


}
}
}



BY
pradeep reddy.


-- modified at 5:17 Friday 1st September, 2006

Pradeep Reddy

QuestionMail not working in server Pin
Exelioindia31-Aug-06 21:10
Exelioindia31-Aug-06 21:10 
AnswerRe: Mail not working in server Pin
REA_ANDREW31-Aug-06 21:22
REA_ANDREW31-Aug-06 21:22 
Questionvalidation controls are not working Pin
pradeep kumarappagari31-Aug-06 20:54
pradeep kumarappagari31-Aug-06 20:54 
AnswerRe: validation controls are not working Pin
CWIZO31-Aug-06 21:22
CWIZO31-Aug-06 21:22 
AnswerRe: validation controls are not working Pin
REA_ANDREW31-Aug-06 21:25
REA_ANDREW31-Aug-06 21:25 
AnswerRe: validation controls are not working Pin
_AK_31-Aug-06 21:47
_AK_31-Aug-06 21:47 
GeneralRe: validation controls are not working Pin
pradeep kumarappagari31-Aug-06 22:39
pradeep kumarappagari31-Aug-06 22:39 
GeneralRe: validation controls are not working Pin
_AK_31-Aug-06 22:42
_AK_31-Aug-06 22:42 
GeneralRe: validation controls are not working Pin
pradeep kumarappagari31-Aug-06 23:09
pradeep kumarappagari31-Aug-06 23:09 
GeneralRe: validation controls are not working Pin
_AK_31-Aug-06 23:10
_AK_31-Aug-06 23:10 
GeneralRe: validation controls are not working Pin
pradeep kumarappagari31-Aug-06 23:23
pradeep kumarappagari31-Aug-06 23:23 
Questiongetting logical drives Pin
248912831-Aug-06 20:45
248912831-Aug-06 20:45 
AnswerRe: getting logical drives Pin
_AK_31-Aug-06 22:56
_AK_31-Aug-06 22:56 
QuestionASP.NET Validation controls are not working on remote server Pin
talk2prabir@yahoo.co.in31-Aug-06 20:42
talk2prabir@yahoo.co.in31-Aug-06 20:42 
AnswerRe: ASP.NET Validation controls are not working on remote server Pin
_AK_31-Aug-06 21:48
_AK_31-Aug-06 21:48 
QuestionHow to send an e-mail using ASP.net? Pin
basha.sk31-Aug-06 20:00
basha.sk31-Aug-06 20:00 
AnswerRe: How to send an e-mail using ASP.net? Pin
_AK_31-Aug-06 20:08
_AK_31-Aug-06 20:08 

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.