Click here to Skip to main content
16,009,112 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionUnable to Load client print control Pin
Deb_2628-Mar-10 1:37
Deb_2628-Mar-10 1:37 
AnswerRe: Unable to Load client print control Pin
PSK_28-Mar-10 2:54
PSK_28-Mar-10 2:54 
QuestionForm minimum groups Pin
Roshan P Mohammed28-Mar-10 1:24
Roshan P Mohammed28-Mar-10 1:24 
AnswerRe: Form minimum groups Pin
Not Active28-Mar-10 1:40
mentorNot Active28-Mar-10 1:40 
GeneralRe: Form minimum groups Pin
Roshan P Mohammed28-Mar-10 2:50
Roshan P Mohammed28-Mar-10 2:50 
GeneralRe: Form minimum groups Pin
Not Active28-Mar-10 3:55
mentorNot Active28-Mar-10 3:55 
AnswerRe: Form minimum groups Pin
Brij28-Mar-10 2:55
mentorBrij28-Mar-10 2:55 
QuestionDynamic buttons ID retrieval Pin
greendragons28-Mar-10 1:11
greendragons28-Mar-10 1:11 
AnswerRe: Dynamic buttons ID retrieval Pin
Brij28-Mar-10 1:32
mentorBrij28-Mar-10 1:32 
AnswerRe: Dynamic buttons ID retrieval Pin
Sandeep Mewara28-Mar-10 1:46
mveSandeep Mewara28-Mar-10 1:46 
QuestionAdd javascript Function in MenuItem Click event Pin
Abdul Rahman Hamidy28-Mar-10 1:04
Abdul Rahman Hamidy28-Mar-10 1:04 
AnswerRe: Add javascript Function in MenuItem Click event Pin
Not Active28-Mar-10 1:42
mentorNot Active28-Mar-10 1:42 
AnswerRe: Add javascript Function in MenuItem Click event Pin
Sandeep Mewara28-Mar-10 2:00
mveSandeep Mewara28-Mar-10 2:00 
GeneralRe: Add javascript Function in MenuItem Click event Pin
Abdul Rahman Hamidy28-Mar-10 21:35
Abdul Rahman Hamidy28-Mar-10 21:35 
AnswerRe: Add javascript Function in MenuItem Click event Pin
MyDevBank31-Mar-10 12:31
MyDevBank31-Mar-10 12:31 
Questionimagebutton in placeholder Pin
kunjumonu27-Mar-10 23:29
kunjumonu27-Mar-10 23:29 
AnswerRe: imagebutton in placeholder Pin
Brij28-Mar-10 2:53
mentorBrij28-Mar-10 2:53 
GeneralRe: imagebutton in placeholder Pin
kunjumonu28-Mar-10 6:32
kunjumonu28-Mar-10 6:32 
Questiongetting data for no of records Pin
inayat basha27-Mar-10 10:16
inayat basha27-Mar-10 10:16 
AnswerRe: getting data for no of records Pin
PSK_27-Mar-10 18:50
PSK_27-Mar-10 18:50 
GeneralRe: getting data for no of records Pin
Brij27-Mar-10 23:08
mentorBrij27-Mar-10 23:08 
GeneralRe: getting data for no of records Pin
PSK_28-Mar-10 2:56
PSK_28-Mar-10 2:56 
GeneralRe: getting data for no of records Pin
Brij28-Mar-10 3:14
mentorBrij28-Mar-10 3:14 
QuestionFileupload problem, please help. Pin
Farraj27-Mar-10 8:35
Farraj27-Mar-10 8:35 
AnswerRe: Fileupload problem, please help. Pin
Sandeep Mewara27-Mar-10 9:02
mveSandeep Mewara27-Mar-10 9:02 
The FileUpload control has a SaveAs(string path) method. You can use that method to save the file to any path using any filename you want. Just make sure ASP.NET has permissions to write to that path. So, you can do something like this to save the uploaded file to the uploads folder in the root of your website:
C#
fileUpload1.SaveAs(Server.MapPath("~/uploads/") 
+ System.IO.Path.GetFilename(fileUpload1.FileName));

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.