Quite new to ASP MVC. I got three buttons on a page and three Booleans in my database
<input type="submit" value="Add File" />
<input type="submit" value="Add Software" />
<input type="submit" value="Add Hardware" />
Booleans
AddFileVisible
AddSoftwareVisible
AddHardwareVisible
How can I make these buttons only appear depending on if there set to true in the db?
using Entity Framework
<input type="submit" value="Add File" />
<input type="submit" value="Add Software" />
<input type="submit" value="Add Hardware" />
Booleans
AddFileVisible
AddSoftwareVisible
AddHardwareVisible
How can I make these buttons only appear depending on if there set to true in the db?
using Entity Framework