使用方法后面的JavaScript调用代码

时间:2016-06-21 02:22:54

标签: javascript c# asp.net function

我想使用JavaScript代码来调用代码隐藏方法。我试了一下,但它没有用。

JavaScript代码:

<script type="text/javascript">  
    function checkMe() {  
        alert("hello");  
        PageMethods.Counting;  
    }

    function onComplete(result, response, content) {  
        alert(result);  
    }  
</script>

以下是我动态创建的<a href="">代码:

string.Format(@"<a href='{0}' onclick='checkMe();' runat='server'>{1}</a>", newlink.NavigateUrl, dt.Rows[contID]["FAQTITLE"].ToString()) ; 

当我点击<a href="">标记时,如何调用以下方法?

protected void Counting(object sender, EventArgs e)  
{  
    //my code is here   
}  

0 个答案:

没有答案