Hello: I'm developing a web application.
I have a form that uses a formview control. On it is a dropdown that has a RequiredFieldValidator associated with it and it's enabled.
Also on the page in the MainConten, is a UserControl I created (see code below). It contains buttons that look and act like a tab control. e.g. when the user clicks on any button, it
opens another page.
Here's the code to show how i have this control in the source code of the page:
When I click on any of the buttons in my UserControl to open another page, it doesn't fire, because the current page they're on has that required field and it's presenting the message that they
need to select something and setting the focus on that control.
I'm confused as to when this event is getting fired. I put a msg box in the event for when the user clicks on the button in my UserControl but it doesn't go in there at all.
Any help is sure appreciated.
Thanks,
Proctor
I have a form that uses a formview control. On it is a dropdown that has a RequiredFieldValidator associated with it and it's enabled.
Also on the page in the MainConten, is a UserControl I created (see code below). It contains buttons that look and act like a tab control. e.g. when the user clicks on any button, it
opens another page.
Here's the code to show how i have this control in the source code of the page:
Code:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
<link href="Styles/QuoteStyles.css" rel="stylesheet" type="text/css" />
<uc1:ProcessMenuContrl ID="ProcessMenuContrl1" runat="server" />
need to select something and setting the focus on that control.
I'm confused as to when this event is getting fired. I put a msg box in the event for when the user clicks on the button in my UserControl but it doesn't go in there at all.
Any help is sure appreciated.
Thanks,
Proctor