This question is locked. New answers and comments are not allowed.
| Controller Code : |
| public JsonResult GetDetails(string id) |
| { |
| // some database call code here |
| partialViewResult = new PartialViewResult(); |
| partialViewResult.ViewName = "view1"; |
| partialViewResult.ViewData.Model = model; |
| return json(partialViewResult); |
| } |
I am using Tab strip in my application.
I have to taken refresh data from database, but avoid the postback for that using JSON method.
I have already partial render this view in tab Strip on my Main View. I want again re-render same parital view in same place
How can re-render parital view there?