asp.net-mvc

Document-Based Security in ASP.NET MVC

I already know about User and Role-based security in ASP.NET MVC. But now I need something a little more granular. Let's say I have a list of documents, some of which the user is authorized for, some not. Each document has a corresponding record in a documents table in a database. Documents can be downloaded for viewing, if the user h...

Input Validation When Using a Rich Text Editor

I have an ASP.NET MVC application and I'm using CKEditor for text entry. I have turned off input validation so the HTML created from CKEditor can be passed into the controller action. I am then showing the entered HTML on a web page. I only have certain buttons on CKEditor enabled, but obviously someone could send whatever text they wan...

Using Url.RouteUrl to Redirect to URL with #, %, and so on

In a web application I'm working on, we'd like to be able to show information about resources at a given path. The path is entirely virtualit only exists in the applicationso we don't really have a problem with users setting virtual paths that are "weird" by normal file system standards. The issue: we have a route that reads something ...

Spark View Engine Html.TextArea Bug?

I have a weird one. I'm trying to render out a standard textarea simply using the TextArea helper: <p> <label for="Message">Message:</label> ${ Html.TextArea("IssueText") } ${ Html.ValidationMessage("IssueText", "*") } </p> And my controller public ActionResult Contact() { return View();...

Publish ASP.NET MVC Application

Hey guys, I am having some trouble when publishing an MVC application to a server, and even to my personal computer. The server has the MVC framework installed so that is not the problem, and I also have it installed obviously. The problem on my local machine is obviously a permissions thing but im not sure what permissions are needed...

A problem with Castle.Core.dll

Hi everybody, the thing is I have an issue with Castle.Core.dll. I've installed RC3 from their website, so I have 1.0.3.0 version of DLL. I`m studying MVC framework using Steve Sanderson's book (which is great, btw) and running samples. Project compiled successfully, all was running, but suprisingly today I've got this runtime exception...

ASP.NET MVC Unity - Injecting At The Model Layer

I see tons of material on how to inject services using the ControllerBuilder.Current.SetControllerFactory but what if I wanted to resolve my services in the model? Would I have to get them from the Controller layer and pass them up? ...

ASP.net MVC performance with extensionless url on IIS 6

We are getting ready to do a an initial deployment of an ASP.net MVC app on IIS 6 running on Windows Server 2003. We've been reading about performance issues involving the use of extenionless urls in MVC applications specifically in the case of removing the '.aspx' extension from the controller portion of the url. Has anyone who has dep...

MVC moq unit test the object before RedirecToAction()

I want to test the data inside the "item" object before it redirect to another action. public ActionResult WebPageEdit(WebPage item, FormCollection form) { if (ModelState.IsValid) { item.Description = Utils.CrossSiteScriptingAttackCheck(item.Description); item.Content = Utils.CrossSiteS...

ASP.NET MVC: The correct way to handle a cancel button

I'm wanting to have a simple cancel button so on confirmation of, say, the deletion of a product, they can change their mind and click cancel before the actual delete action is started. I figure that on clicking the button you are wanting to redirect the user to the previous page. I understand that a common way to handle this is with ja...

keep track of user progress without requiring login asp.net mvc

I created a website which loads an a question pool from an XML file and generates random tests for my users to practice for an exam. Some of the tests take a while for the user complete, and they may not finish it all in one sitting, so I would like for people to be able to come back later and finish up their tests during multiple sessi...

Can the resource be swapped at runtime in asp.net?

I'm working on a multilingual site written in asp.net using mvc 1.0. I was asked to switch from resources files to a database to allow my client to change the translation strings without need of restarting the service. I wonder if it is possible to swap the translation at runtime with standard resource file. Question: How can I allow...

Creating a DetailsView Pager in ASP.NET MVC

My application has 10 products that are listed on a products page. When a user clicks one of these products they get directed to the details page for that product. I would like to implement a next/previous pager on the details page that takes you to the next or previous product without having to go back to the products page. I am assum...

How to Reliably Track Human Page Views on my article Pages

I have searched online for this and came across an article that suggested I should use an image to track human page views because search engine and bots don't download images. It said I should put the image code in javascript like: document.write('code here'). The system I am developing heavily depends on accurate unique user visits the ...

switch between jquery-1.3.2.js and jquery-1.3.2.min.js

When I develop application, I want to use jquery-1.3.2.js, and when I deploy it, I want to use jquery-1.3.2.min.js? What is the best way to switch between two without manually commenting and uncommenting one. Thanks. ...

Microsoft Ajax CDN doesn't include MicrosoftMvcAjax.js?

I try to reference my java script file from Microsoft Ajax CDN , but find out that Microsoft Ajax CDN doesn't include MicrosoftMvcAjax.js. Is there an undocumented way to include those files? ...

Can OmniTure SiteCatalyst or any web Analytics Software track Critical Page Views?

Hello, I need to track only human visits to my article pages. I hear that SiteCatalyst is the best of the best for page tracking. Here is what I am trying to do. I need to track every human visit if possible because this will affect the amount of money i have to pay. I will need to download site statistics for all of my pages with an acc...

Implementing a WAP site using ASP.NET-MVC

We plan on implementing a WAP site using ASP.NET-MVC. Has anyone any experiance of this? Are there any Gotchas? We will also be implementing a "standard" web site for browsers. Would it be possible to have a single set of Models and Controllers, and just have seperate views for each site? ...

Field in mapped entity required

Hi I'm not sure if my problem is solvable in a more or less comfortable way. There is a class Person which has mapped 'hasOne' a participant. The person has a birthday but this field is not required on the person itself. But if I would like to add a participant to the person then the birthday is required. How to get rid of this mo...

Asp.Net MVC / Entity Framework. Avoid tag soup?

Ok, I have a new MVC project which uses the entity framework. I'm spitting out messages (This is a bulletin board style section) now depending on some conditional factors the row in the table output must have a differant class style. The model that is passed to the page from the controller is the entity Model (Called Messages and cont...