I would like to conditionally disable this button, or hide it, if Model.BicycleSellerListingId
is not greater than 0. Not sure how to do it.
<div style="position:absolute; left:300px; top:633px;">
@using (Html.BeginForm("Delete", null, new { id = Model.BicycleSellerListingId }, FormMethod.Post))
{
<button type="submit">Delete Listing</button>
}
</div>
OR
OR