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
fesin pch
NA
34
11.2k
How to upload image in Asp.net MVC using ajax, jquery , json
Jun 22 2018 12:45 AM
I want to build an online shopping site for that image has to be uploaded with other data like product name price using ajax and json as return type.
My Contoller :
public JsonResult InsertProduct( Product prdObj)
{
var profile = Request.Files;
string imgname = string.Empty;
string ImageName = string.Empty;
//Following code will check that image is there
//If it will Upload or else it will use Default Image
if (System.Web.HttpContext.Current.Request.Files.AllKeys.Any())
{
var logo = System.Web.HttpContext.Current.Request.Files["file"];
if (logo.ContentLength > 0)
{
var profileName = Path.GetFileName(logo.FileName);
var ext = Path.GetExtension(logo.FileName);
ImageName = profileName;
var comPath = Server.MapPath("~/Images/") + ImageName;
logo.SaveAs(Path.Combine(Server.MapPath("~/Images/"), ImageName));
prdObj.ImagePath = comPath;
// prdObj.Add()
return Json(db.InsertProduct(prdObj.ProductName, prdObj.ImagePath,prdObj.Description,prdObj.Price,prdObj.Category), JsonRequestBehavior.AllowGet);
}
}
else
prdObj.ImagePath = Server.MapPath("~/Images/") + "profile.jpg";
int response = 1;
return Json(response, JsonRequestBehavior.AllowGet);
}
js file:
$(document).ready(function () {
$('#btnAddProduct').click(function () {
var formData = new FormData();
var files = $("#productimage").get(0).files;
formData.append("file", files[0]);
formData.append("ProductName", $('#productname').val());
formData.append("Category", $('#category').val());
formData.append("Price", $('#price').val());
// formData.append("Gender", $("input[name='gender']:checked").val());
formData.append("ImagePath", files[0].name);
formData.append("Description", $('#detail').val());
$.ajax({
type: 'POST',
url: "/Admin/InsertProduct",
data: formData,
cache: false,
contentType: false,
processData: false,
success: function (response) {
if (response == 1) {
alert("successfully added");
}
else {
alert("Something Went Wrong..");
}
}
})
})
})
View:
<body>
<div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="productname">Product Name</label>
<input type="text" class="form-control" id="productname" placeholder="Product Name" />
</div>
<div class="form-group">
<label for="productimage">Product Image</label>
<input type="file" class="form-control" id="productimage" placeholder="Browse" />
</div>
<div class="form-group">
<label for="description">Description</label>
<textarea cols="5" rows="3" id="detail"></textarea>
</div>
<div class="form-group">
<label for="price">Price</label>
<input type="text" class="form-control" name="price" id="price" placeholder="Price"/>
</div>
<div class="form-group">
<label for="category">Category</label>
<input type="text" class="form-control" id="category" placeholder="Category" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="btnAddProduct" onclick="return AddProduct();">Add Product</button>
</div>
</div>
</body>
</html>
Please Help me to upload the image and also to view this image.Here am using stored procedure to insert into database.
Reply
Answers (
1
)
How to Bind values in dropdownlist in mvc
How write ELMAH connectionstring in the in the web.config?