Answers for "c# razor add disabled to button if"

C#
0

c# razor add disabled to button if

<input type="button" class="btnresetinvoice button" value="Reset"
       data-invoiceid="@item.InvoiceId"
       @{ if(item.PMApproved != true) { 
             @:disabled="disabled" 
        } }
/>
Posted by: Guest on June-02-2020

Code answers related to "c# razor add disabled to button if"

C# Answers by Framework

Browse Popular Code Answers by Language