Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:11225
More Search Options
RSS Available
Matching Posts
Re: how to developed a mvc or asp.net project in VS 2010 beta 2 ultimate
hmm, stange, I have it under File - New - Project, the template name is ASP.NET MVC 2 .......
Posted to
Getting Started
(Forum)
by
Fredrik N
on 11/7/2009
Re: Need dot net design pattern sample application.
Here is a good site: http://www.dofactory.com/Patterns/Patterns.aspx
Posted to
Architecture
(Forum)
by
Fredrik N
on 5/17/2008
Re: MVC structure and Spring.Net
I use Domain Driven Design, so the Model in the MVC is my domain model. So I create something called Repositories, for example CustomerRepository. This Repositories uses Interfaces. I then use Spring.Net to inject the repositories into the Controller. You can find a basic example on my blog (But it only show how I inject a Repository and uses interfaces: http://weblogs.asp.net/fredriknormen/archive/2007/11/17/asp-net-mvc-framework-create-your-own-icontrollerfactory-and-use-spring-net.aspx The Entities
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/15/2008
Re: MVC clarification
Don't let this be a war now please ;) The View is the part in the MVC that should render the Model. The Controller is responsible for handling user input, updating the Model; make sure the Model gets rendered etc (some sort of complex UI logic will be placed within the Controller). The Controller it like a contract between the View and the Model. The Model contains the core logic of the application, such as reusable business logic, "data access", the domain model with entities etc
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/9/2008
Re: Object reference not set to an instance of an object.
You can get this error if you request a .aspx page directly instead of using a MVC friendly URL, like /Home/Index.. to get the Html class to work, you need to make sure the View is rendered by a Controller.
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/8/2008
Re: The controller for path could not be found
The URL will look after a controller with the name ValidationController, it will check if you have a class with that name, in your case you don't, your class is ValidationJQueryController so your path should be /ValidationJQuery/<action> or you should rename the class ValidationJQueryController to ValidationController.. It will not use the name of the file.. so have that in mind.
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/8/2008
Re: '/default.aspx' could not be found or it does not implement the IController interface.
By default the following route should be added to the globala.asax when you use the MVC Project template shipped with the ASP.Net 3.5 Extension CTP: RouteTable .Routes.Add( new Route { Url = "Default.aspx" , Defaults = new { controller = "Home" , action = "Index" , id = ( string ) null }, RouteHandler = typeof ( MvcRouteHandler ) }); THis will make sure the HomeController's Index action method will be executed when the Default.aspx page is requested.
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/8/2008
Re: MVC View User Controls -- where do you put them, in your solution?
Same here, I put it into the Shared folder, the folder is for sharing "components" among the Views.
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/8/2008
Re: Cannot get datasource to work with Html.RadioButtonList
As tgmdmb says, there is a bug. Here is running example: [ControllerAction] public void MyAction() { String[] options = new String[] { "test", "test2", "test3" }; RenderView("MyView", options); } MyView.aspx <% foreach( string radio in Html.RadioButtonList("test", ViewData)) {%> <br /><%=radio%> <% } %> MyView.aspx.cs public partial class MyView : ViewPage<string[]> { } You need to specify the type of the ViewPage for
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/7/2008
Re: MVC GridView
Take a look at the following posts about using Server Control with the MVC Framework: http://forums.asp.net/t/1216834.aspx
Posted to
ASP.NET MVC
(Forum)
by
Fredrik N
on 2/7/2008
Page 1 of 531 (5301 items) 1
2
3
4
5
Next >
...
Last ยป
WindowsClient:
PDC Recap and More
Channel 9:
Reactive Extensions API in depth: Primitives
WindowsClient:
New WPF Features: MultiTouch
WindowsClient:
codeplex.com/testapi v 0.4 available
Channel 9:
The Visual Studio Documentary - Alan Cooper, the Father of Visual Basic
Channel 9:
Hanselminutes on 9 - Guided Tour inside the Windows Azure Cloud with Patrick Yantz
ASP.NET:
ASP.NET 4.0 ScriptManager Improvements
WindowsClient:
XAML Toolkit CTP = FxCopXaml + XamlDom + System.Xaml.dll support for Silverlight XAML
Channel 9:
Fishbowl for Facebook
WindowsClient:
Free Embeddable Fonts for your WPF Applications
ASP.NET:
Program Manager Position on the ASP.NET PM team
Channel 10:
Microsoft Teams Up with Nielsen
Channel 10:
What Azure Looks Like
ASP.NET:
Orchard team looking for a new developer
Channel 10:
Student Discount on Office 2008 for Mac Now Available
WindowsClient:
Surface SDK 1.0 SP1 supports XNA Game Studio 3.0 and later
WindowsClient:
TestAPI 0.4 Released
Channel 9:
Using the SharePoint Business Data Connectivity Designer in VS 2010
Channel 9:
10-4 Episode 36: Windows Server AppFabric and Workflow Services Lab
WindowsClient:
New WPF Features: DatePicker\Calendar\VSM\Datagrid
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online