How do I conditionally show a field in ASP.NET MVC Razor?

后端 未结 5 1042
逝去的感伤
逝去的感伤 2021-02-05 17:11

I am very new to C# and ASP.NET MVC Razor. I want to show a field in my view if the field is not blank.

Code



        
5条回答
  •  误落风尘
    2021-02-05 17:33

    I would calculate the class name in a code block and output that. Something along the lines of:

    @{
       var phone2ClassName = string.IsNullOrWhiteSpace(Model.phone2) ? "hide" : string.Empty;
    }
    
    
    ...
    

提交回复
热议问题