@model WebApplication1.Models.response @{ ViewBag.Title = "Edit"; string priority = ""; if (ViewBag.targetTicket.priority == 1) { priority = "Urgant"; } else if (ViewBag.targetTicket.priority == 2) { priority = "Important"; } else { priority = "Normal"; } }