Problem:
A control that shows each user which quizzes they have passed out of a possible four.
My solution:
Create user control that lists the name of the quizzes and has a checkmark at the end of each quiz name that I would like to make visible when they pass a quiz.
The actual user control is inside of my master page.
From reading other posts, I understand that I need to make the image.visible property public in the control code behind. I have tried this several ways and haven't had much luck.
So how do I expose the .visible property of an image inside of my user control?
Thanks for any advice.