Search Tips

Justice by Zoom: Frozen video, a cat - and finally a verdict Wednesday, August 12, 2020

Washington Post

The proceeding that appears to be the nation’s first virtual criminal jury trial was underway for just a couple of minutes this week, when a moment occurred that would be familiar to many during the pandemic: a juror’s Zoom video feed froze.

The trial, which was being staged using the video conferencing site that has become ubiquitous during quarantines and office shutdowns, ground to a halt with juror No. 5 paused with one hand aloft as if he were taking an oath.

Over the next several minutes, the judge and his staff tried to remedy the problem, but ultimately they had to dismiss the man from the seven-member panel that was deciding the guilt of a driver accused of speeding in a construction zone.

Read more at: https://www.washingtonpost.com/local/legal-issues/justice-by-zoom-frozen-video-a-cat--and-finally-a-verdict/2020/08/12/3e073c56-dbd3-11ea-8051-d5f887d73381_story.html

 


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>