G
Guest
All,
I have a dropdown list box that when a user clicks on it i would like to run
some code within the webform1.aspx
I have the following
<asp:dropdownlist id="ddlLocation" OnClick="check_click" runat="server">
check_click is defined as follows within the header tag
<script runat=server >
void check_click(Object sender, EventArgs e)
{
......
}
</script>
But when the user click on the drop down box I get an exception saying it
cant find check_click what is wrong?
Thanks
Msuk
I have a dropdown list box that when a user clicks on it i would like to run
some code within the webform1.aspx
I have the following
<asp:dropdownlist id="ddlLocation" OnClick="check_click" runat="server">
check_click is defined as follows within the header tag
<script runat=server >
void check_click(Object sender, EventArgs e)
{
......
}
</script>
But when the user click on the drop down box I get an exception saying it
cant find check_click what is wrong?
Thanks
Msuk