Click here to Skip to main content
15,880,608 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 205.2K   7.2K   48  
Parichay (A Simple & Small Asp.Net MVC Social Network Starter)
@model IList<Parichay.Data.Entity.MemberGroupmessages>


@if ((Model != null) && (Model.Count != 0))
 {
     <div class="cmtMainBox">
     <div class="cmtHeading"><span>Group Messages:</span></div>
     @foreach (var item in Model)
     {
         @Html.Partial("grpMsg",item)
           
     }
     </div>
 } @*
<br /><br />
<table class="tblAllBorders">
<tr><td>

    <div class="display-label">Imagefilename</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Imagefilename)
    </div>

    <div class="display-label">Createdon</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Createdon)
    </div>

    <div class="display-label">Parentid</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Parentid)
    </div>

    <div class="display-label">Source</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Source)
    </div>

    <div class="display-label">Modifiedon</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Modifiedon)
    </div>

    <div class="display-label">Type</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Type)
    </div>

    <div class="display-label">Isprivate</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Isprivate)
    </div>

    <div class="display-label">Text</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Text)
    </div>

    <div class="display-label">Thumbnailfilename</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Thumbnailfilename)
    </div>

    <div class="display-label">PostedAgo</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.PostedAgo)
    </div>

    <div class="display-label">ModifiedAgo</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.ModifiedAgo)
    </div>

    <div class="display-label">Html</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Html)
    </div>

    <div class="display-label">ChildrenCount</div>
    <div class="display-field">
        @Html.DisplayFor(model => model.ChildrenCount)
    </div>
</td></tr>
</table>

<p>
    @Html.ActionLink("Edit", "Edit", new { id=Model.Id }) |
    @Html.ActionLink("Back to List", "Index")
</p>
*@

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