vs2008 ASP.NET Web應用程式介面呼叫後臺函式

fyf飛呀飛發表於2014-06-26

1.在後臺新增需要呼叫的函式

protected string test()
{
      return "test return";
}

2.在前臺新增js程式碼

<head id="Head1" runat="server">
    <script type="text/javascript">
    function GetStr()
    {
        var result;
        result = '';
        result = '<%= this.test() %>'//test()為後臺需要呼叫的函式
        alert(result);
    }
    </script>
</head>

3.在控制元件上新增呼叫js的事件

<input id="button" type="button" value="click" onclick="GetStr()" />



相關文章