Click here to Skip to main content
15,895,667 members
Articles / Web Development / ASP.NET

Parichay (A Simple & Small Asp.Net MVC Social Network Starter)

Rate me:
Please Sign up or sign in to vote.
4.77/5 (20 votes)
22 Feb 2012GPL316 min read 207.7K   7.2K   48  
Parichay (A Simple & Small Asp.Net MVC Social Network Starter)
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Web.Mvc.HandleErrorInfo>" %>

<asp:Content ID="errorTitle" ContentPlaceHolderID="TitleContent" runat="server">
    Error
</asp:Content>

<asp:Content ID="errorContent" ContentPlaceHolderID="MainContent" runat="server">
    <h2>
        Sorry, an error occurred while processing your request.
    </h2>
    <%
        Exception exc = (Exception)HttpContext.Current.Server.GetLastError();
        
        if (exc != null)
        {
         %>
         <table class="tblAllBorders">
         <tr><th>Message:</th><td><%= exc.Message %></td></tr>
         <tr><th>Target Site:</th><%= exc.TargetSite %></tr>
         <tr><th>Stack Trace:</th><%= exc.StackTrace %></tr>
         </table>
         <%} %>
</asp:Content>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Singapore Singapore
I love programming, reading, and meditation. I like to explore management and productivity.

Comments and Discussions