public async Task Login(string returnUrl = null)
{
ViewData["ReturnUrl"] = returnUrl;
ViewBag.CustomList = new List
{
new SelectListItem { Text = "Custom Option 1", Value = "1" },
new SelectListItem { Text = "Custom Option 2", Value = "2" }
};
return View();
}
public List GetCustomList()
{
return new List
{
new SelectListItem { Text = "Custom Option 1", Value = "1" },
new SelectListItem { Text = "Custom Option 2", Value = "2" }
};
}
public async Task Login(string returnUrl = null)
{
ViewData["ReturnUrl"] = returnUrl;
ViewBag.CustomList = GetCustomList();
return View();
}