So basically if I go with:
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#@Model.ID">
<div class="modal fade" id="@Model.ID" tabindex="-1" role="dialog" aria-labelledby="CenterTitle"" aria-hidden="true">
it does not work! (ID is public Guid ID { get; set; }) The button does not open the modal window.
If I manually change to something like
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#id11">
<div class="modal fade" id="id11" tabindex="-1" role="dialog" aria-labelledby="CenterTitle"" aria-hidden="true">
it works? Any idea?