Click here to Skip to main content
15,920,708 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Thread concept in ASp.Net Pin
N a v a n e e t h9-May-07 22:31
N a v a n e e t h9-May-07 22:31 
AnswerRe: Thread concept in ASp.Net Pin
Guffa9-May-07 23:26
Guffa9-May-07 23:26 
GeneralRe: Thread concept in ASp.Net Pin
Zaroo10-May-07 19:15
Zaroo10-May-07 19:15 
QuestionI need some Exampls web Based Online Projects Pin
somagunasekaran9-May-07 21:14
somagunasekaran9-May-07 21:14 
AnswerRe: I need some Exampls web Based Online Projects Pin
wEb GuRu...10-May-07 0:05
wEb GuRu...10-May-07 0:05 
QuestionASP.NET Client validation with java script Pin
mkalyanakumar9-May-07 21:01
mkalyanakumar9-May-07 21:01 
AnswerRe: ASP.NET Client validation with java script Pin
SimulationofSai9-May-07 21:08
SimulationofSai9-May-07 21:08 
GeneralRe: ASP.NET Client validation with java script Pin
mkalyanakumar9-May-07 22:30
mkalyanakumar9-May-07 22:30 
QuestionASP.NET Client validation with java script Pin
mkalyanakumar9-May-07 20:51
mkalyanakumar9-May-07 20:51 
AnswerRe: ASP.NET Client validation with java script Pin
PSK_9-May-07 21:18
PSK_9-May-07 21:18 
GeneralRe: ASP.NET Client validation with java script Pin
mkalyanakumar10-May-07 0:01
mkalyanakumar10-May-07 0:01 
GeneralRe: ASP.NET Client validation with java script Pin
PSK_10-May-07 0:55
PSK_10-May-07 0:55 
QuestionAsp.net 2.0 + c# Pin
ritu43219-May-07 20:48
ritu43219-May-07 20:48 
AnswerRe: Asp.net 2.0 + c# Pin
Sandeep Akhare9-May-07 21:04
Sandeep Akhare9-May-07 21:04 
GeneralRe: Asp.net 2.0 + c# Pin
ritu43219-May-07 21:17
ritu43219-May-07 21:17 
AnswerRe: Asp.net 2.0 + c# Pin
Chetan Ranpariya9-May-07 21:31
Chetan Ranpariya9-May-07 21:31 
GeneralRe: Asp.net 2.0 + c# Pin
Sandeep Akhare9-May-07 21:32
Sandeep Akhare9-May-07 21:32 
Here is the code for creating a new folder. TextBox1 contains the name of the new folder

<br />
// you drive path it can be anything depends where you want to store <br />
 string path = @"C:\Albums\";<br />
        string DirectoryName = TextBox1.Text;<br />
        if (Directory.Exists(path + DirectoryName))<br />
        {<br />
            // Foldername Already Exist Select Another name <br />
        }<br />
        else<br />
        {<br />
            // Create the Folder name<br />
            Directory.CreateDirectory(path + DirectoryName);<br />
        }<br />
      <br />
<br />


Thanks and Regards
Sandeep

If If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "




GeneralRe: Asp.net 2.0 + c# Pin
ritu432110-May-07 0:56
ritu432110-May-07 0:56 
QuestionThemes Pin
Brendan Vogt9-May-07 20:30
Brendan Vogt9-May-07 20:30 
AnswerRe: Themes Pin
Sherin Iranimose9-May-07 20:45
Sherin Iranimose9-May-07 20:45 
GeneralRe: Themes Pin
Venkatesh Mookkan9-May-07 20:47
Venkatesh Mookkan9-May-07 20:47 
GeneralRe: Themes Pin
Sherin Iranimose9-May-07 20:52
Sherin Iranimose9-May-07 20:52 
GeneralRe: Themes Pin
Brendan Vogt9-May-07 20:58
Brendan Vogt9-May-07 20:58 
GeneralRe: Themes Pin
Brendan Vogt9-May-07 20:57
Brendan Vogt9-May-07 20:57 
QuestionASP.NET 1.1: Chart Image is not visible on client page from Reporting Services 2005 Pin
sarvesh.upadhyay9-May-07 20:29
professionalsarvesh.upadhyay9-May-07 20:29 

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.