<%@ Page Language="C#" AutoEventWireup="true" %>
    <%
        string paramString = Request.QueryString["query"];
        if (null != paramString)
        {
            if (paramString.ToLower() == "ValueIsRight".ToLower())
            {
                //Here I want to invoke ABC function below defined in my asp page
            }
        }
    %>
 <script type="text/javascript">
        function ABC {
            }
</script>
I am very new to ASPX and want to know if there is anyway to call this function? I tried using the call keyword but it doesn't come up in my IDE. 
 
     
     
     
    