ASP.Net MVC 3 Razor Response.Write position

后端 未结 4 931
半阙折子戏
半阙折子戏 2021-02-12 17:28

I am trying to update this tutorial on implementing Facebooks BigPipe to razor.

There is a html helper extension that adds a pagelet to a list, and then outputs a holdin

4条回答
  •  自闭症患者
    2021-02-12 18:10

    You should use the ViewBag and put the string in there, then output it.

    In controller:

    ViewBag.Foo = Bar;
    

    In view:

    @ViewBag.Foo

提交回复
热议问题