chamando webmethod do jquery C # retornando erro 404 na página asp.net .net

deve estar faltando algo básico aqui. Estou recebendo um erro 404 chamando a, webmethod de jquery em uma página aspx que estou executando localmente.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="empJquery.aspx.cs" Inherits="webApiOracle.empJquery" %>

<!DOCTYPE html>

<html lang="en">
<head runat="server">
    <title>jquery emps</title>
    <script src="Scripts/jquery-1.10.2.min.js"></script>
    <link href="../Content/bootstrap.min.css" rel="stylesheet" />
    <script type="text/javascript">


        $(document).ready(function () {
            getEmployees();

        });

        function getEmployees() {
            jQuery.ajax({
                url: 'empJquery.aspx/Test',
                type: "POST",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                beforeSend: function () {
                    alert("Start!!! ");
                },
                success: function (data) {
                    alert("a");
                },
                error: function (msg) { alert("Sorry!!! "); }

            });
        }

    </script>

depois no código atrás da página

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using webApiOracle.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;


namespace webApiOracle
{
    public partial class empJquery : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        [System.Web.Services.WebMethod]
        public static string Test()
        {

            return "Success";
        }

    }

}

Estou recebendo um erro 404 sempre que executo. Tentei alterar o URL para /empJquery.aspx/Test. Também tentei localhost / empJQuery.aspx / Test e localhost: 48784 / empJquery.aspx / Test, mas não consigo obtê-lo . Preciso adicionar algo à minha configuração da web? Estou executando o .net 4.5 graças

questionAnswers(1)

yourAnswerToTheQuestion