M
Mr. Roboto
for simplicity sake, i have this servers-side code:
<script language="VB" runat="server">
Sub Clear()
txtMessage.Value = ""
Calendar1.SelectedDates.Clear()
End Sub
</script>
i also have a regular html button tag.
<input type="button" value="OK" id="b1" onclick="Clear;">
is there a way i can access the server-side asp. net
function Clear() by clicking the button?
<script language="VB" runat="server">
Sub Clear()
txtMessage.Value = ""
Calendar1.SelectedDates.Clear()
End Sub
</script>
i also have a regular html button tag.
<input type="button" value="OK" id="b1" onclick="Clear;">
is there a way i can access the server-side asp. net
function Clear() by clicking the button?