Search Tips

Job Announcement - Chief U.S. Probation Officer Monday, April 19, 2021

Classification Range: JSP 16 to JSP 17

Annual Salary Range: $150,212 to $172,515

Position Location: U.S. Probation & Pretrial Services Office (Bismarck or Fargo, ND)

Closing Date: May 31, 2021

Introduction The United States Probation and Pretrial Services Office for the District of North Dakota is accepting applications for the position of Chief U.S. Probation Officer. The Chief U.S. Probation Officer is directly responsible for the administration and management of the federal Probation and Pretrial Services operation in the District of North Dakota, including seven field office locations and a staff of 42 employees. This is an executive, high-level management position that is under the administrative direction of the Chief Judge of the U.S. District Court, District of North Dakota.

Link to full job announcement: https://www.ndp.uscourts.gov/sites/ndp/files/Chief%20USPO%20-%20vacancy%20announcement.pdf

 


Runtime Error

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>