Click here to Skip to main content
15,896,278 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
QuestionDisadvanatage Of HTML Control Pin
varshavmane9-May-07 20:19
varshavmane9-May-07 20:19 
AnswerRe: Disadvanatage Of HTML Control Pin
sarvesh.upadhyay9-May-07 20:41
professionalsarvesh.upadhyay9-May-07 20:41 
GeneralRe: Disadvanatage Of HTML Control Pin
varshavmane9-May-07 20:58
varshavmane9-May-07 20:58 
AnswerRe: Disadvanatage Of HTML Control Pin
SimulationofSai9-May-07 20:42
SimulationofSai9-May-07 20:42 
GeneralRe: Disadvanatage Of HTML Control Pin
varshavmane9-May-07 20:58
varshavmane9-May-07 20:58 
QuestionRemoving DB Password of MS Access Pin
Venkatesh Mookkan9-May-07 19:52
Venkatesh Mookkan9-May-07 19:52 
QuestionIIS vs Oracle AS server Pin
pradeep kumarappagari9-May-07 19:38
pradeep kumarappagari9-May-07 19:38 
AnswerRe: IIS vs Oracle AS server Pin
Sandeep Kumar9-May-07 19:45
Sandeep Kumar9-May-07 19:45 
GeneralRe: IIS vs Oracle AS server Pin
pradeep kumarappagari9-May-07 19:50
pradeep kumarappagari9-May-07 19:50 

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.