mvc

Applying business logic to form elements in ASP.NET MVC

I am looking for best practices in applying business logic to form elements in an ASP.NET MVC application. I assume the concepts would apply to most MVC patterns. The goal is to have all the business logic stem from the same place. I have a basic form with four elements: Textbox: for entering data Checkbox: for staff approval Checkb...

ASP.NET/MVC: Inline code

What am I doing wrong? How come <%= this %> isn't being interpreted as C#? Here's the code : And here is what it renders (notice the Firebug display): What do you think is going on? MVC newb here. :( And the static Site class: (If you cannot see the screenshots on the page, view source and use the URLs from the <img> tags.) ...

Web.Config issue with Unit Testing

I am trying to unit test a lot of my MVC controllers, but unfortunately it keeps failing because it needs a lot of settings from the web.config.. Which I copied over but does not read it, what I'm needing is the membership and rolemanager but I can't just add it to the app.config either, which I've been able to get the connection string...

Getting the valid email address.

Hi In a MVC application i want to validate the email addresses. I want to get the valid emailID from the list.If I use the emailaddress from the address book of any mail account then the name of the user get appended with the emailID .eg:"Ayushi Soni" ,.. and then copy these address to a textbox in an MVC application. Now I want to ret...

Change the Views location

I am developing a website in MVC 2.0. I want to change the View folder location in my website. I wanted to keep the views folder inside other folders, When I try to do so i am getting following errors The view 'Index' or its master was not found. The following locations were searched: ~/Views/Search/Index.aspx ~/Views/Search/Index.ascx ...

put_Recorder not working for DVD

Hi i want to write a file into my DVD how can i do it by coding. I am into the development of this application but initially only i got stuck; please help m_hResult = CoCreateInstance(__uuidof(MsftDiscFormat2Data), NULL, CLSCTX_INPROC_SERVER,__uuidof(IDiscFormat2Data), (void**)&m_discFormatData); if (!SUCCEEDED(m_hResult)) { qDebug()<...

How to unit test this simple ASP.NET MVC controller

Lets say I have a simple controller for ASP.NET MVC I want to test. I want to test that a controller action (Foo, in this case) simply returns a link to another action (Bar, in this case). How would you test TestController.Foo? (either the first or second link) My implementation has the same link twice. One passes the url throw View...

how to use html link Compatibility of html and ASP.NET MVC

i have the website asp.net html and asp.net mvc. i can not to work 2 website in 1 website ...

Use a different port with RequireHttps filter in MVC2

Is it possible to use [RequireHttps] filter with a different port other than 443? I can't find much documentation about it. ...

MVC LOB application

Hi, I'm new to web development and i'm starting with a MVC project. I have a view to create a new Service. In this view, i need to have a button to show a dialog with client names (i also would like to implement filters and paging in this dialog). Once the user selects a client from the dialog, i need to populate some combo boxes in the...

DVD burn IStream data

i want to write single directory into my DVD. How can i pass data in form of IStream. m_hResult = m_discFormatData->Write(m_streamData); How to show my directory to IStream Please help ...

Adoption of MVC Patterns

I am trying to sell the idea of converting my companies web app to a MVC framework. I am comfortable with the benefits of MVC with regard to maintenance and development, but what are the benefits with regard to scalability? I see that it is often mentioned as a benefit, but haven't found a breakdown of what those benefits might be. ...

In MVC file structure, what is Views/XXFolder/xxTemplateFile what is XXFolder known as?

I'm a bit confused about mvc terminology. Using the question title as an example, a view corresponds to an action, which means xxTemplateFile would be considered to represent the view. xxFolder does not represent an area. So could it be a View Collection? or View Container? Cheers, ...

Using VRaptor3 with Tomcat UnpackWARs property setted to false

Hi there, I have to deploy my web app to a tomcat container with the unpackWARs property defined to false. When I do that, although the application is successfully deployed, when I try to access my url I always got a 404 error. I just don't receive that error when I try to access a direct file like index.html for instance. But I can't ...

MVC Dropdown List isn't binding to the model.

Hi, I am trying set up a simple dropdown list but I dont seem to be able to get it to bind to the Model. I am using Asp.Net MVC and nhibernate. My dropdown list is declared like so: <%= Html.DropDownListFor(model => model.Project, (IEnumerable<SelectListItem>)ViewData["Projects"], " -- Select -- ", new { name = "Project" })%> I set ...

How to create CommonsMultipartFile object given only a file.

I have a junit test method that takes a CommonsMultipartFile object as a parameter. I'm trying to create a FileItem object so I can pass it to the constructor, CommonsMultipartFile(org.apache.commons.fileupload.FileItem fileItem) To do that, I'm trying to create the FileItem object using the DiskFileItem constructor, DiskFileItem(ja...

How would the 'Model' in a Rails-type webapp be implemented in a functional programming langauge?

In MVC web development frameworks such as Ruby on Rails, Django, and CakePHP, HTTP requests are routed to controllers, which fetch objects which are usually persisted to a backend database store. These objects represent things like users, blog posts, etc., and often contain logic within their methods for permissions, fetching and/or muta...

MVC nhibernate entiry mapping for dropdown list

Hi, I have a dropdown list on an ASP.NET MVC project that I am pretty sure is not binding to my model because of my nhibernate mapping. I have tried many variations on the asp mvc side resulting in this post here. MVC side of things seems fine I believe the issue may be that my object is trying to bind, but my mapping is out of whack. ...

How can I get local resources in a controller in ASP.NET MVC?

I know I can use the namespace Resources to get resources within App_GlobalResources but how do I get local resources within a controller? Example, a folder in Views folder called Misc, with a page.aspx, and a App_LocalResources folder with the file page.aspx.ascx. ...

ASP.NET MVC FileContentResult IE 8.0 hangs on download

some of my users are expieriencing problems when they try to download a report, the download just hangs on 0%, restarting IE usually fixes the problem. why does this happen? i am using ASP.NET MVC (v1), the my action looks like this <Authorize()> _ <AcceptVerbs(HttpVerbs.Get)> _ Function RenderReport(ByVal guid As Guid, ByVal anonym ...