How can i access my page controls like textbox or combobox in Static function ..
   [WebMethod]
    public static string GetCustomers()
    {
       
        string query = "SELECT ID , Name, Country FROM Customers";
        SqlCommand cmd = new SqlCommand(query);
        return GetData(cmd).GetXml();
    }