TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sasi Reddy
NA
346
225.5k
Calender Controller for MVC Views
Feb 16 2014 6:39 AM
namespace DBLayer.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
public partial class CustomerBasicDetail
{
[Required]
public string DOB { get; set; }
}
}
MVC View
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<table class="csstable1" align="center">
<tr >
<td align="right">
@Html.LabelFor(model => model.DOB)
</td>
<td >
@Html.EditorFor(model => model.DOB, new { id="Dob"})
@Html.ValidationMessageFor(model => model.DOB)
</td>
</tr>
<tr >
<td align="right">
</td>
<td ><input type="submit" value="Create" />
</td>
</tr>
</table>
I have a model and View like above.I need to add calender controller for that view.Can anyone tell me how to that?.
Reply
Answers (
2
)
how to retrive emails from outlook in asp.net c#?
connectivity to database