MdotButler
Programmer
I have a button on a Usercontrol placed on many pages.
When I am in inquiry mode I want this button visable and not visable when in add or edit mode. Before making the common code a usercontrol I would address the button directly in the code behind as such:
I placed the user control onto the new page as such:
How do I now address this button from the parent page code behind?
Mark
When I am in inquiry mode I want this button visable and not visable when in add or edit mode. Before making the common code a usercontrol I would address the button directly in the code behind as such:
Code:
btnCompanyDetail.Visable = True | False
Code:
<uc1:CompanyHeader ID="CompanyHeader1" runat="server" />
Mark