A
AMP
Why does this return "Success" and not the bool that it represents:
This Returned <%= Html.LabelFor(m=>m.Success)%>
My Property:
private bool success = false;
public bool Success
{
get { return success; }
set { success = value; }
}
I dont even get a casting error
Thanks
This Returned <%= Html.LabelFor(m=>m.Success)%>
My Property:
private bool success = false;
public bool Success
{
get { return success; }
set { success = value; }
}
I dont even get a casting error
Thanks