Part 1 - Basic CRUD operations using Jquery ajax and modal popup in ASP.NET MVC4.

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Your Videos are really really Awesome. Love from Bangladesh :)

rohulamin
Автор

you are great man, your video helped me soooo much

mohammedkhalil
Автор

Awesome man, please add Sound.
Really it is a great video series

thank u mate

ramakrishnareddy
Автор

A Very great video series,
Can you make another series where we call web or wcf service from JQuery Ajax methods and populate them instead of calling MVC Controller Action methods..something of that kind.

This video deserves more views..

Thanks in Advance

gardyroy
Автор

nice contents but please provide volume facility.

jordenlopes
Автор

You are greate, Awesome but I get error in this section foreach (var i in contacts)
                    {
                        Contact con = i.a; // here is error I'am getting
                        con.CountryName = i.CountryName;
                        con.StateName = i.StateName;
                        all.Add(con);
                    }I'am geting error in Contact con = i.a; and the error message is "Cannot implicitly convert type 'MVCPopUpCRUD.Contacts' to 'MVCPopUpCRUD.Contact' ". Do you know why this error. It looks exactly as yours. Thank you in advance

juliirubyx
Автор

sir pls make a tutorial on tfs, bcz there is no good tutorial on tfs on youtube

biswajitmishra
Автор

Sir, I get stuck with the code below. I have tested the database connection and it is okay but when I run the program there's no data displayed. I found out that there is a problem with the foreach() codeblock. Please help.


//HomeController

public JsonResult GetContacts()
{
List<Contact> all = null;

using (MyDatabaseEntities dc = new MyDatabaseEntities())
{
var contacts = (from a in dc.Contacts
join b in dc.Countries on a.CountryId equals b.CountryId
join c in dc.States on a.StateId equals c.StateId
select new
{
a,
b.CountryName,
c.StateName
});
if (contacts != null)
{
all = new List<Contact>();
foreach (var i in contacts) //The code block here won't execute because it doesn't return a Contact object.
{
Contact con = i.a;
con.CountryName = i.CountryName;
con.StateName = i.StateName;
all.Add(con);
}
}

}
return new JsonResult { Data = all, JsonRequestBehavior = JsonRequestBehavior.AllowGet };
}

propertyaclcdavao
Автор

I am facing problem, there's an error in home controller line 41

atularjun
Автор

Sourav..I am originally from Kolkata and staying in Canada but will be visiting shortly in Kolkata. Do you have your contact details, let me know I would like to discuss some of the areas on Asp.Net MVC .

topalashchatterjee