This is a migrated thread and some comments may be shown as answers.

[Solved] Re-Render the Partial view in Tab Strip

1 Answer 161 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Kets G
Top achievements
Rank 1
Kets G asked on 24 May 2010, 10:17 AM
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);                
        }  
 
 
 
Hello,

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?



1 Answer, 1 is accepted

Sort by
Tags
TabStrip
Asked by
Kets G
Top achievements
Rank 1
Answers by
Peter
Top achievements
Rank 1
Share this question
or