Showing posts with label ASP.NET MVC. Show all posts
Showing posts with label ASP.NET MVC. Show all posts

Thursday, January 28, 2010

Generadores de Codigo y COmponentes ASP.NET

Dot Net Nuke

http://www.sg.com.mx/guia/node/618

Wiki en ASP.NET
http://www.screwturn.eu/MainPage.ashx?From=Wiki

ASP.NET COmponentes, Herramientas
http://www.sg.com.mx/guia/category/keywords/aspnet

FORM BUILDER:
http://www.solotuweb.com/fs~id~1304.html

MyGeneration
http://sourceforge.net/projects/mygeneration/files/

http://ajgenesisstudio.codeplex.com/
http://ajgenesis.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=7262

Code Generation
http://davidhayden.com/blog/dave/category/15.aspx

ASP.NET MVC 13 Preguntas

http://www.variablenotfound.com/2009/04/aspnet-mvc-trece-preguntas-basicas.html

Wednesday, October 14, 2009

ASP.NET MVC DropDownList

SelectList elements= new SelectList(new [] {"10", "15", "25", "50", "100", "1000"}, "15");


IList customers = repository.GetAll();
IEnumerable selectList =
from c in customers
select new SelectListItem
{
Selected = (c.CustomerID == invoice.CustomerID),
Text = c.Name,
Value = c.CustomerID.ToString()
};


ViewData["myList"] =
new SelectList(new[] { "10", "15", "25", "50", "100", "1000" }
.Select(x => new {value = x, text = x}),
"value", "text", "15");

<%=Html.DropDownList("myList") %>



SelectList sl = new SelectList( new[]{
new SelectListItem{ Text="one", Value="1"},
new SelectListItem{ Text="two", Value="2"},
new SelectListItem{ Text="three", Value="3"}
}, "Text", "Value", "2" );

Referencias:
http://blog.wekeroad.com/blog/asp-net-mvc-dropdownlist-and-html-attributes/

Running apps

Runtastic (I uninstalled because force to update your device - Internet connection problems) Runkeeper  (Currently testing) Strava   (Curre...