I was just doing a quick test of something, and before I could really get started I got this error. I have no C# code yet and this is my aspx code:
<script language=javascript type="text/javascript">
function myOnClick() {
//if (TextBox1.Text != null)
//DropDownList1.Visible = true;
return false;
}
</script>
<title>TEST</title>
and
<asp:Button ID="Button1" OnClientClick="return showMore();" runat=server Text="V" />
And I get the error at this line:
<input type="submit" name="Button1" value="V" onclick="return showMore();" id="Button1" />
while debugging...
Any ideas?
THANKS!!!