Search Tips

For the first time, flagship law journals at top U.S. law schools are all led by women Friday, February 7, 2020

Washington Post

Only one woman worked on the staff of the Harvard Law Review when Ruth Bader Ginsburg arrived on campus in 1956. It would be another two decades before a woman was elected to lead the school’s prestigious legal journal.

The Supreme Court justice this week addressed the current slate of editors in chief from the top 16 law schools in the country. For the first time ever, all are women.

“It’s such a contrast to the ancient days when I was in law school,” Ginsburg said during a gathering in Washington to mark the 100th anniversary of the ratification of the 19th Amendment, which granted women the right to vote. “There really is no better time for women to enter the legal profession.”

Read more at: https://www.washingtonpost.com/local/legal-issues/for-the-first-time-flagship-law-journals-at-top-us-law-schools-are-all-led-by-women/2020/02/07/b4d3bc64-4836-11ea-bc78-8a18f7afcee7_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>