Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a apicontroller like this:

public class MenuController : ApiController
{
    [HttpGet]
    public string GetMenu([FromUri]string page, [FromUri]string menu)
    {
    }

}

I have a partialview say "menu.cshtml" i want to use that partialview and give the menu in string . I have tried various functions that says renderpartialviewtostring but they use controller in it but i am using ApiController

Please help

share|improve this question

1 Answer

To render any view to a string you must instantiate a controller object and 'process' the view thru the controller factory. Thats what action methods do in the end.

Rendering a view to a string in ASP.NET MVC 2

this is a little dated but still very accurate.

good luck. great question.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.