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

@{
    ViewBag.Title = "Invite";
    Layout = "~/Views/Shared/_Layout.cshtml";
    Parichay.AppConstants.RequestTypes type = (Parichay.AppConstants.RequestTypes)Model.Type;
}

<h2>Send a @type.ToString() Request to Member</h2>

<script src="@Url.Content("~/Content/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Content/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

@using (Html.BeginForm()) {
    @Html.ValidationSummary(true)
    <fieldset>
        <table class="tblAllBorders">
        <tr><th style="width:100px">
          Add your personal  Message to the request:
        
        </th><td>
        @Html.HiddenFor(model=>model.TargetPageid)
        @Html.HiddenFor(model=>model.Recipientid.Id)
        @Html.HiddenFor(model => model.Senderid)
            @Html.TextAreaFor(model => model.UserMessage, 5, 50,null)
            @Html.ValidationMessageFor(model => model.UserMessage)
        </td></tr>


        <tr><th>
            @Html.LabelFor(model => model.Createdate)
        
        </th><td>
            @Html.DisplayFor(model => model.Createdate)
            @Html.ValidationMessageFor(model => model.Createdate)
        </td></tr>

        <tr><th>
            @Html.LabelFor(model => model.Version)
        
        </th><td>
            @Html.DisplayFor(model => model.Version)
            @Html.ValidationMessageFor(model => model.Version)
        </td></tr>
        <tr><td colspan="2" style="text-align:right"><input type="submit" value="Send Request" /> </td></tr>
        </table>
    </fieldset>
}

<br /><br />

<table class="tblAllBorders">
<tr><th colspan="5">My Previous Invitations:</th></tr>
<tr><th>Id </th> <th>Email </th><th>Unique Key </th><th>Sent Date </th><th>Joined UserId</th></tr>
@foreach (var itm in Model.MyRequests)
{
    <tr><td>@itm.Id</td><td>@itm.Email</td><td>@itm.Guid</td><td>@itm.Createdate</td><td>@itm.Recipientid.Givennm</td></tr>
}
</table>

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