Visual Basic にテキスト ボックスを読み取らせ、値を変数に設定させようとしているだけですが、機能していないようです。何か案は?
HTML:
<body>
<script>
function myfn() {
alert(<%= myInputAge%>)
}
</script>
<form id="form1" runat="server">
<div>
<asp:TextBox id="av10test" runat="server" Text="hello"></asp:TextBox>
</div>
<div>
<input type="button" onclick=myfn() value="hello"/>
</div>
</form>
</body>
コードビハインド:
Partial Class WebForm7
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Not IsPostBack Then
myInputAge = av10test.Text
End If
End Sub
Protected Property myInputAge
End Class