我想使用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
}