Tuesday 5 March 2019

How to hide a div or inputs element depending on Model value in mvc

///////////////// html page


            </tr><td>

                @if (@item.UserStatus == 1)
                {
                    <a href="#"><i class="glyphicon glyphicon-edit"></i></a>
                }
            </td></tr>




No comments:

Post a Comment

Excel Sort values in ascending order using function TEXTJOIN

 Excel ::  Text ::  1,3,5,2,9,5,11 Result :: 1,2,3,5,5,9,11 Formula ::     TEXTJOIN ( ",",1,SORT(MID(SUBSTITUTE( A1 ,","...