WebFormsMvp is an open-source framework which supports the Model-View-Presenter (MVP) pattern on traditional WebForm-based ASP.NET Web applications.
0
votes
0answers
10 views
WebFormsMVP Model in OnInit event
I'm trying to add dynamic controls based on model in OnInit method but i get the "The Model property is currently null, however it should have been automatically initialized by the presenter. This ...
0
votes
0answers
14 views
asp.net webforms + MVP
I'm new with MVP in webforms.
I have a page with 3 web user controls inside.
Web User Control 1, will display Web User Control 2.
and
Web User Control 2, will display Web User Control 3.
Each Web ...
3
votes
1answer
134 views
Pass runtime value to constructor using SimpleInjector
I'm trying to combine SimpleInjector with WebFormsMvp.
To facilitate DI WebFormsMvp provides the IPresenterFactory interface.
It contains the Create method which provides the presenter type to ...
1
vote
1answer
34 views
Localize strings in asp
Is this possible to store some strings in a local resourse file and set them to a Label using a switch case???
Now I'm using this code...
switch (messgseCode)
{
...
0
votes
1answer
92 views
Value converter for ASP.Net Webforms
I'm putting together a web forms application that is utilizing the WebFormsMvp library. In the examples, it shows something like this in the ASPX markup:
Name:
<asp:TextBox runat="server"
...
0
votes
1answer
40 views
is there any way to mock an implemented class
I want to unit test a MVP presenter class . but its interaction to the service is not through interface ( it uses a concrete class ) . now I wonder is there anyway to mock service class without being ...
-2
votes
1answer
87 views
ASP.Net framework for data read application and report generation
I was looking for a best framework to develop an ASP.Net Web application.
It will be using database MS SQL Server 2000 (It has to deal with other application)
The Web server is equipped with ...
0
votes
0answers
38 views
Is there any significant difference between MVC and MVP and which is better? [duplicate]
Possible Duplicate:
What are MVP and MVC and what is the difference?
Also Please make me understand why P in MVP is for Presenter when it is performing duty like that of Controller in MVC.
0
votes
1answer
112 views
WebformsMVP Implement a Ninject IPresenterFactory
I am building a proof of concept webformsmvp site. I want to use Ninject (v3.0) to resolve my service (and any other) dependencies when creating the Presenters. Here is an example of my Presenter ...
0
votes
1answer
575 views
MVP vs MVC design patterns for web and mobile?
For an upcoming project, I am looking into MVP as an option over MVC. I am highly familiar with and like MVC, and am merely trying to see if I will gain anything using MVP.
What I gather about MVP ...
4
votes
1answer
293 views
How should I unit test my WebFormMVP Presenters with Moq'd Views when using the Supervising Controller Pattern
I'm trying to test a Presenter created using ASP.NET WebFormsMVP. I'm building it using a "Supervising Controller" pattern so the View is responsible for updating itself from the Model. I've ...
0
votes
2answers
94 views
How to iterate thru collection in model to an unordered list?
I'm using a UI Pattern Framework. The Framework allows me to access data in the form of a Model in the client (similar to MVC)<%# Model.Widget %>. I'm binding to a FormView control using Eval ...
1
vote
1answer
140 views
shared presenter not working on the same page where is other control with default presenter
I have on master page four user controls which are binded to shared
presenter. Now I want to add dome other user control with default
presenter and I have an exception.
This problem can be seen in the ...
0
votes
1answer
110 views
BDD with SubSpec and XUnit NullReferenceException
Fairly new to TDD; want to give BDD a try first. I'm using an MVP UI Presentation Pattern Framework and I'm trying to write my first test using SubSpec and XUnit but I'm getting a ...
4
votes
4answers
997 views
How do I handle postback in usercontrol from button click on MasterPage
I have usercontrol inside a webform with a MasterPage. The MasterPage has a logout button:
protected void lbtnLogout_Click(object sender, EventArgs e)
{
FormsAuthentication.SignOut();
...
0
votes
1answer
108 views
Repository Pattern with Linq to SQL in WebFormsMVP
Are there any good examples / Samples to implement Repository Pattern with Linq to SQL in WebFormsMVP.
0
votes
1answer
115 views
MVP in asp.net, where to program filling the UI with data from existing data?
i'm at a new client where they implemented the mvp pattern.
now i want to use it to, but what i can't find in their code is this:
i open a asp form with an id in the querystring. i get the dataobject ...
0
votes
2answers
874 views
Fire up event from Image Button in a User Control inside a Data List
:
This is my first post here, so I beg you forgive my mistkaes :D
The problem I'm facing is the following: I'm trying to catch event from some 'ImageButton' inside a Data List but I am experiencing ...
-1
votes
1answer
190 views
Why would a control's load event still be called when the parent page has an outputcache directive?
I have a page with a user control on it. If I put this outputcache directive on the control, the load event on the control doesn't fire
<%@ OutputCache Duration="3600" VaryByParam="id" %>
...
1
vote
0answers
192 views
Page Url by page type
Is there any way to get the Page Url by its page type ?
I'm trying to create an extension method that allows to redirect to pages using the page type instead of the URL
For a page called Index.asxp
...
0
votes
1answer
217 views
WebformsMvp - Initializing the model
The question is simple. Let's say I have a model. I need default data to be loaded into the model on first page load. Where do I do this? I thought on performing the data load overriding the OnInit ...
2
votes
1answer
269 views
How can i do Error Handling in a MVC/MVVM Windows Form app
i'm building an application using a pattern similar to the MVC. The situation is the next: in the context of the model making changes to the associated repository. If the change throw an exception ...
3
votes
3answers
343 views
MVP pattern - design question
We are trying to use the MVP pattern in our current project (asp.net app) and have run into some issues. The page has multiple sections and we are using user controls for these independant sections. ...
4
votes
1answer
458 views
Does anyone have an insight into ASP.NET WebFormsMVP?
Recently I ran into this open source project ASP.NET WebformsMVP.
It seems like an alternative to asp.net mvc and also a quick way to introduce testability into an existing webforms applications. ...
0
votes
2answers
498 views
ASP.NET WebFormsMVP PageDataSource Events Executing Twice For Unknown Reason
The problem is SelectMethod and other actions execute twice. This has been difficult to isolate, as it only occurs on a larger solution, and not in simpler demo applications.
//.ascx
<asp:FormView ...
3
votes
1answer
518 views
Managing ViewState in WebFormsMVP
yesterday i read a very good article about ViewState in ASP.NET.
Currently we are using WebFormsMVP to allow better testability in our project. The framework does presenter binding in OnInitComplete ...
0
votes
0answers
191 views
Issue With RhinoMocks - Can't Mock Return
I'm having a strange error trying to create a unit test. I'm trying to mock IPresenterFactory of the WebFormsMvp framework to force the return of a presenter. So I'm mocking it as:
var view = ..;
...
1
vote
1answer
382 views
How do I get many property values from View to Presenter in WebFormsMvp?
What is the best way to get a number of property values of a business object from the View to the Presenter in a WebFormsMvp page?
Bearing in mind this issue with DataSources.
Here is what i ...

