Robert Lemiesz
Robert Lemiesz

Reputation: 1156

Where can I find ASP.NET MVC4 documentation

Does anyone know where I can find a good documentation of ASP.NET. I checked the microsoft site, and didnt see anything. Im looking for something like cplusplus where I can reference all the different methods and how they work.

For example, @Html.actionlink(). I was trying to find what parameters i can take, and all im able to find is stackoverflows on it (which is nice but I want a comprehensive list of the diffrent methods)

Upvotes: 0

Views: 491

Answers (2)

Roy Dictus
Roy Dictus

Reputation: 33139

Are you looking for the ASP.NET MVC 4 Reference?

Additionally, you may want to check out http://www.asp.net, especially the MVC page at http://www.asp.net/mvc. Yes, those are real URLs!

Good luck!

Upvotes: 2

Gabe
Gabe

Reputation: 50493

Either us this or intellisense will tell you the overloads available.

More specifically the HtmlHelper ActionLink

Upvotes: 3

Related Questions