Search Tips

RULE 58. APPENDIX OF FORMS

Effective Date: 2/20/1973

Obsolete Date: 3/1/2006

The forms contained in the Appendix of Forms are illustrative and not mandatory.

Rule 58 was amended, effective March 1, 2006.

Rule 58 is similar to N.D.R.Civ.P. 84. The forms are found in the appendix of forms. The practice of appending illustrative forms to serve as guides has been found useful in connection with many criminal codes.

Rule 58 was amended, effective March 1, 2006, in response to the December 1, 2002, revision of the Federal Rules of Criminal Procedure. The language and organization of the rule were changed to make the rule more easily understood and to make style and terminology consistent throughout the rules.

SOURCES: Joint Procedure Committee Minutes of April 28-29, 2005, page 12; February 20-23, 1973, pages 4-5; May 6-7, 1971, pages 15-16.

STATUTES AFFECTED:

SUPERSEDED: N.D.C.C. §§ 29-05-07, 29-05-29, 29-07-25, 29-08-18, 29-11-09, 29-12-04, 29-14-19, 29-26-08, 29-29-06, 31-03-04, 33-12-04, 33-12-06.

CONSIDERED: N.D.C.C. §§ 29-05-01, 29-05-31.

CROSS REFERENCE: N.D.R.Civ.P. 84 (Appendix of Forms).

Effective Date Obsolete Date
03/01/2006 View
02/20/1973 03/01/2006 View

 


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>