I was in the middle of a quick test when I encountered an error. At this point, I haven't implemented any C# code yet and my aspx code looks like this:
<script language=javascript type="text/javascript">
function myOnClick() {
//if (TextBox1.Text != null)
//DropDownList1.Visible = true;
return false;
}
</script>
<title>TEST</title>
Additionally,
<asp:Button ID="Button1" OnClientClick="return showMore();" runat=server Text="V" />
The error occurs at this line:
<input type="submit" name="Button1" value="V" onclick="return showMore();" id="Button1" />
During debugging...
Any insights on how to resolve this issue?
Thank you!