Search Tips

Teams, booster club, judge inducted into West Fargo High Hall of Fame Tuesday, October 15, 2019

West Fargo Pioneer

Two teams, a judge and booster club were inducted into the West Fargo High School Hall of Fame on [Oct. 3].

West Fargo community members and alumni gathered at the DoubleTree by Hilton to honor the newest class of inductees.

. . .

Beyond athletics, Judge Steven McCullough, who graduated from West Fargo High in 1980, was inducted into the Hall of Fame. McCullough graduated from the University of North Dakota Law School and after a career as a practicing lawyer, is now a district judge.

Read more at: https://www.westfargopioneer.com/sports/4709510-Teams-booster-club-judge-inducted-into-West-Fargo-High-Hall-of-Fame

 


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>