I am doing work in c# and face a problem in List
public class manuController : Controller
{
static List<Mnaish> mm = new List<Mnaish>();
public ActionResult Index()
{
return View(mm);
}
public ActionResult Details(Mnaish mm)
{
return View(mm);
}
public ActionResult Create()
{
return View();
}
Prabhu RajaPosted Dec 20, 2011, 1:52 AM
http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx
Vikrant JadhavPosted Dec 20, 2011, 12:06 AM
Refer the following link will help you
http://www.dotnetperls.com/list
Thanks & Regards,
Vikrant Jadhav
Please Mark this as Correct Answer if this post is helpful to you.
Jaganathan BantheswaranPosted Dec 19, 2011, 11:36 PM
What is the error ?