Click here to Skip to main content
15,898,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: [Message Deleted] Pin
Abhijit Jana2-Sep-09 7:53
professionalAbhijit Jana2-Sep-09 7:53 
QuestionSaving the Uploaded File to the Web Server!! Pin
Sr...Frank2-Sep-09 3:44
Sr...Frank2-Sep-09 3:44 
AnswerRe: Saving the Uploaded File to the Web Server!! Pin
Blikkies2-Sep-09 4:19
professionalBlikkies2-Sep-09 4:19 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Sr...Frank2-Sep-09 4:29
Sr...Frank2-Sep-09 4:29 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Abhijit Jana2-Sep-09 4:33
professionalAbhijit Jana2-Sep-09 4:33 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Blikkies2-Sep-09 4:36
professionalBlikkies2-Sep-09 4:36 
GeneralRe: Saving the Uploaded File to the Web Server!! Pin
Abhijit Jana2-Sep-09 4:42
professionalAbhijit Jana2-Sep-09 4:42 
AnswerRe: Saving the Uploaded File to the Web Server!! Pin
Abhijit Jana2-Sep-09 4:32
professionalAbhijit Jana2-Sep-09 4:32 
Use FileUpload Control

Try to uplaod file using,

If(FileUpload1.HasFile)
   {
    FileUpload1.SaveAs(path);
   }


This code will work fine when you run your application from VS IDE. but when you deploy your code on IIS, you need to give the Access permission to the folder for user to upload file or you need to create a separate application pool for your site with Local System Identity.

Please let me know if you have any issue .


Thanks !

Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.

Questionhow to set property for a user control from cs file Pin
ansriharsha2-Sep-09 1:24
ansriharsha2-Sep-09 1:24 
AnswerRe: how to set property for a user control from cs file Pin
Not Active2-Sep-09 2:33
mentorNot Active2-Sep-09 2:33 
AnswerRe: how to set property for a user control from cs file [modified] Pin
r a m e s h2-Sep-09 2:59
r a m e s h2-Sep-09 2:59 
GeneralRe: how to set property for a user control from cs file Pin
Abhijit Jana2-Sep-09 4:34
professionalAbhijit Jana2-Sep-09 4:34 
QuestionWant to Store database locally and then update it to remote server Pin
sjs4u2-Sep-09 1:16
sjs4u2-Sep-09 1:16 
AnswerRe: Want to Store database locally and then update it to remote server Pin
r a m e s h2-Sep-09 1:32
r a m e s h2-Sep-09 1:32 
GeneralRe: Want to Store database locally and then update it to remote server Pin
sjs4u2-Sep-09 1:36
sjs4u2-Sep-09 1:36 
GeneralRe: Want to Store database locally and then update it to remote server Pin
Christian Graus2-Sep-09 11:17
protectorChristian Graus2-Sep-09 11:17 
QuestionSetting focus with JavaScript Pin
dptalt2-Sep-09 1:09
dptalt2-Sep-09 1:09 
AnswerRe: Setting focus with JavaScript Pin
Jay Royall2-Sep-09 2:19
Jay Royall2-Sep-09 2:19 
GeneralRe: Setting focus with JavaScript Pin
dptalt2-Sep-09 4:47
dptalt2-Sep-09 4:47 
GeneralRe: Setting focus with JavaScript Pin
Abhijit Jana2-Sep-09 4:51
professionalAbhijit Jana2-Sep-09 4:51 
GeneralRe: Setting focus with JavaScript Pin
dptalt2-Sep-09 4:53
dptalt2-Sep-09 4:53 
AnswerRe: Setting focus with JavaScript Pin
Abhijit Jana2-Sep-09 4:35
professionalAbhijit Jana2-Sep-09 4:35 
GeneralRe: Setting focus with JavaScript Pin
Jay Royall2-Sep-09 4:42
Jay Royall2-Sep-09 4:42 
GeneralRe: Setting focus with JavaScript Pin
Abhijit Jana2-Sep-09 4:44
professionalAbhijit Jana2-Sep-09 4:44 
GeneralRe: Setting focus with JavaScript Pin
Jay Royall2-Sep-09 4:50
Jay Royall2-Sep-09 4: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.