你好我有这个问题我试图找到一种从asp控制器调用javascript函数的方法,我在这里做的是代码:
<script type="text/javascript">
function hello() {
alert("hello world")
}
</script>
< /head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="buttonme" runat="server" OnClientClick="javascript:hello()"
Text="click" />
现在可以说我有这个代码背后的功能
Public Sub msg()
MsgBox("hello world")
End Sub
我想从一个javascript函数中调用它,所以它就像控制器----调用---> javascript ---调用--->后面的代码
有没有办法做到这一点