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

ASP.NET

 
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 
Hi,

Put a textbox to enter the folder name.
and while uploading the file check if any value is entered in the textbox.
if the values is there then create a folder on server with that name and then upoload the file otherwise upload file on the default location.

if(txtFolder.Text.Length != 0)
{
string newpath = path + "\" + txtFolder.Text;
System.IO.Directory.Create(path + txtFolder.Text);
fileinput.postedFile.SaveAs(newpath + "\" + filename);
}
else
{
fileinput.postedfile.SaveAs(path + "\" + filename;
}

I hope this will help you.

Thanks and Regards,
Chetan Ranpariya
GeneralRe: Asp.net 2.0 + c# Pin
Sandeep Akhare9-May-07 21:32
Sandeep Akhare9-May-07 21:32 
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 

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.