1

Hey guys on my Base layout I have

<html lang="en" jsPageObject="@ViewBag.JSPageObject">

Then on the view, I have:

@{
    ViewBag.Title = "Details";
    ViewBag.JSPageObject = "MyDetails";
}

I've noticed the ViewBag.Title gets updated but not the JSPageObject..

4

1 に答える 1

3

ほとんどの<html>場合、変数を更新すると、タグはすでにレンダリングされています。代わりにコントローラーで設定してみてください。

于 2012-08-09T06:14:49.147 に答える