Hi,
U say that it's a file upload problem, but last time u post a picture that seem to me a "database connection string" error. Please check it out. or If u have problem in file upload u can use following code which is work fine for me at any web server.
=======================================================
if(imageUpload.PostedFile.ContentLength == 0)
lblmsg.Text = "No file Selected";
else
{
//image upload
string fileType = Path.GetFileName(imageUpload.PostedFile.ContentType);
if((fileType =="pjpeg")||(fileType =="jpeg"))
fileType = "jpeg";
if((fileType == "jpeg")||(fileType =="bmp")||(fileType =="jpg"))
{
fileName =imageId.ToString()+"."+ fileType;
string destPath = Path.Combine(filePath,fileName);
imageUpload.PostedFile.SaveAs(destPath);
}//End if
}//End if
======================================