Search Tips
...

Sonja Clapp

District Court Judge

Chambers:
Elected in 2005

Judge Clapp was born in 1948. She was a graduate of the University of North Dakota receiving her Juris Doctorate. She was the Assistant State's Attorney in Grand Forks County from 1988-2004. Employed prior to law career by Grand Forks and Ramsey County social services for approximately 11 years. Elected Northeast Central Judicial District Judge in 2004 and 2010. Judge Clapp retired Dec. 1, 2014.

 


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>