TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Shuvojit Halder
NA
763
44.2k
FCK Editor Image Upload Issue in server
May 16 2015 3:21 AM
While i was uploading the image in server it was showing "server error". For image upload i used a method. which is below. But, It is working fine in local but in server it's not working.
public void uploadnow(HttpPostedFileWrapper upload)
{
if (upload != null)
{
string ImageName = upload.FileName;
string path = System.IO.Path.Combine(Server.MapPath("~/Uploads/Admin/"), ImageName);
upload.SaveAs(path);
}
}
Reply
Answers (
5
)
How clr understands different languages ?
MVC Web Api