错误未终止的字符串常量

时间:2016-10-29 12:28:17

标签: javascript asp.net html5

我在“Error Unterminated string constant”这一行中有两个徘徊 我现在不知道使用这个js cript到我的代码中的最佳方法。 这是代码:

 <input   type="submit"  value="Delete"
                onclick="return confirm('vous etes sures d \' avoir supprimer le membre avec le nom = @item.UserName  ');"/> 

这句话的所有代码:

@foreach (var item in Model) { 
      using (Html.BeginForm("Delete", "AccountHopital", new { id = item.UserId }))
            {

    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.UserId)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserName)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserSurname)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserEmail)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserBirthday)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserAdress)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserPhone)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserDescription)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserCreateAcount)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.UserLastUpdate)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.RoleId)
        </td>
        <td>

        @if (item.UserPicture !=null )
         {
              <img src="@Url.Action("getImgage", "AccountHopital", new { id = item.UserId })" style="height:100px;width:100px"    />
         }
  else
  {
      <img src="~/Images/8.jpeg" style="height:100px;width:100px"  />
  }
         </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id=item.UserId }) |


                <input   type="submit"  value="Delete"
                    onclick="return confirm('vous etes sures d \' avoir supprimer le membre avec le nom = @item.UserName  ');"/> 


            @Html.ActionLink("Details", "Details", new {  id=item.UserId }) |
            @Html.ActionLink("Delete", "Delete", new {  id=item.UserId }) |
            @Html.ActionLink("Manage Account","ManageProfile",new {id = item.UserId})
        </td>
    </tr>
}
}

0 个答案:

没有答案