Escape @ character in razor view engine

后端 未结 15 2108
梦谈多话
梦谈多话 2020-11-22 07:55

I am creating a sample ASP.NET MVC 3 site using Razor as view engine. The razor syntax starts with @ character e.g. @RenderBody(). If I write @test

15条回答
  •  天命终不由人
    2020-11-22 08:31

    I just had the same problem. I declared a variable putting my text with the @.

    @{
       var twitterSite = "@MyTwitterSite";
    }
    
    ...
    
    
    

提交回复
热议问题