Click here to Skip to main content
15,909,193 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: tooltip on grid cell and grid column header Pin
Vasudevan Deepak Kumar26-Jun-07 2:57
Vasudevan Deepak Kumar26-Jun-07 2:57 
AnswerRe: tooltip on grid cell and grid column header Pin
Chetan Ranpariya26-Jun-07 2:58
Chetan Ranpariya26-Jun-07 2:58 
QuestionClientQueryString Pin
AvidOn-Tech26-Jun-07 2:16
AvidOn-Tech26-Jun-07 2:16 
AnswerRe: ClientQueryString Pin
Sathesh Sakthivel26-Jun-07 2:19
Sathesh Sakthivel26-Jun-07 2:19 
QuestionDatagrid Pin
bhanu1234526-Jun-07 2:09
bhanu1234526-Jun-07 2:09 
AnswerRe: Datagrid Pin
RepliCrux26-Jun-07 2:15
RepliCrux26-Jun-07 2:15 
AnswerRe: Datagrid Pin
Sathesh Sakthivel26-Jun-07 2:18
Sathesh Sakthivel26-Jun-07 2:18 
QuestionError during Deletion of file in Server Pin
dhulipudi26-Jun-07 1:37
dhulipudi26-Jun-07 1:37 
Hi,

I am getting an error while uploading and deleting a file in the server. Using the following code.

ERROR MESSAGE: The process cannot access the file 'index_01.jpg' because it is being used by another process.

protected void Button4_Click(object sender, EventArgs e)
{
DirectoryInfo d = new DirectoryInfo(Server.MapPath("~\\Upload\\"));

if (FileUpload1.HasFile)
{
FileUpload1.SaveAs(@"D:\\Dotnet_Projects\\kyc_start\\Upload\\" + FileUpload1.FileName);
}
else
{
Label1.Text = "No File Uploaded.";
}
foreach (FileInfo f in d.GetFiles("*.jpg"))
{
byte[] buffer = new byte[f.OpenRead().Length];
f.OpenRead().Read(buffer, 0, (int)f.OpenRead().Length);
PhotoManager.AddPhoto(buffer);
f.Delete(); //ERROR HERE!!!

}
this.PhID();
}

Plz let me know where i am making mistakes. ITS working fine in local server.Smile | :)

Regards,
dhulipudi

AnswerRe: Error during Deletion of file in Server Pin
kubben26-Jun-07 2:18
kubben26-Jun-07 2:18 
GeneralRe: Error during Deletion of file in Server Pin
dhulipudi26-Jun-07 2:35
dhulipudi26-Jun-07 2:35 
GeneralRe: Error during Deletion of file in Server Pin
kubben26-Jun-07 2:38
kubben26-Jun-07 2:38 
GeneralRe: Error during Deletion of file in Server Pin
kubben26-Jun-07 2:40
kubben26-Jun-07 2:40 
GeneralRe: Error during Deletion of file in Server Pin
dhulipudi26-Jun-07 2:54
dhulipudi26-Jun-07 2:54 
AnswerRe: Error during Deletion of file in Server Pin
Vasudevan Deepak Kumar26-Jun-07 2:29
Vasudevan Deepak Kumar26-Jun-07 2:29 
Questionvalidation Pin
A kamath26-Jun-07 0:54
A kamath26-Jun-07 0:54 
AnswerRe: validation Pin
SHatchard26-Jun-07 1:04
SHatchard26-Jun-07 1:04 
GeneralRe: validation Pin
A kamath26-Jun-07 1:24
A kamath26-Jun-07 1:24 
AnswerRe: validation Pin
RepliCrux26-Jun-07 1:04
RepliCrux26-Jun-07 1:04 
AnswerRe: validation Pin
Sathesh Sakthivel26-Jun-07 1:53
Sathesh Sakthivel26-Jun-07 1:53 
GeneralRe: validation Pin
A kamath26-Jun-07 1:39
A kamath26-Jun-07 1:39 
GeneralRe: validation Pin
A kamath26-Jun-07 1:58
A kamath26-Jun-07 1:58 
GeneralRe: validation Pin
Sathesh Sakthivel26-Jun-07 2:04
Sathesh Sakthivel26-Jun-07 2:04 
GeneralRe: validation Pin
Sathesh Sakthivel26-Jun-07 2:05
Sathesh Sakthivel26-Jun-07 2:05 
GeneralRe: validation Pin
A kamath26-Jun-07 3:48
A kamath26-Jun-07 3:48 
GeneralRe: validation Pin
Sathesh Sakthivel26-Jun-07 4:21
Sathesh Sakthivel26-Jun-07 4:21 

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.