Search Tips

U.S. District Court sets naturalization ceremony for August 10th, 2023. Wednesday, August 9, 2023

The United States District Court for the District of North Dakota announces a ceremony for the naturalization of new citizens will be held in Fargo on Thursday, August 10, 2023, at Newman Outdoor Field, 1515 15th Avenue North. U.S. Magistrate Judge Alice R. Senechal will administer the Oath of Allegiance. The naturalization ceremony will be held before the Fargo-Moorhead RedHawks’ game against the Sioux City Explorers at 6:45 p.m. Twenty individuals, originating from 14 countries, are expected to be welcomed as new citizens.

 


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>