Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
76 views

Trying to render two spaces between sentences in an HTML error message

I know that browsers strip out extra spaces after a single space. I generally use " " to include a second space between sentences in my HTML. Anyway, I'm using ASP.NET MVC 3 and am trying ...
4
votes
1answer
1k views

MVC3 Unobtrusive Validation Not Working after Ajax Call

Ok, here is the deal, I have seen a few posts on SO relating to this issue, but nothing is working for me. Basically, I have select drop downs that are being loaded from partial views, I am trying ...
2
votes
1answer
101 views

How throw custom http status code during Ajax(Post) request

I need to throw HttpException during AjaxRequest in Controller and CustomFilterAttribute When I throw Exception in Controller with 403 error [HttpPost] [CustomAuthorize] public ActionResult ...
2
votes
2answers
66 views

MSdeploy deploys an MVC 2 application with wrong virtual directory name

I'm using MSbuild(v4.0.30319.1) and MSdeploy(v7.1.618.0) to deploy my ASP MVC 2 application on IIS(v7.5). Here are the commands I run to do it: msbuild.exe <path to my csproj>/MyMvcApp.csproj ...
2
votes
0answers
109 views

Reuse views and controller logic in MVC3

in my MVC3 based application I often need to reuse the same functionality in different views. Example: One view to search for users. Another view to show the search results and enable the user to ...
2
votes
1answer
154 views

How to map a viewModel to a hierarchy model with arrays with AutoMapper?

A deep model is code-generated with lots of arrays (think WCF proxy genererated code based on a wsdl) that needs to be filled with a flattened viewmodel. There are no naming conventions between the 2 ...
1
vote
1answer
53 views

QueryString and RenderAction

I'm setting a class on my html tag when a specific query string argument is sent, right now I'm doing it like this (Razor view master page): @if ...
1
vote
1answer
189 views

How spine routing (spine js mvc) work?

I have tried Spinejs library for a few days, I have the document on Spinejs.com but till now, I still don't know how exactly Spine routing work. From the document, I know how to create a new route and ...
1
vote
1answer
46 views

asp mvc return viewmodel with html anchor

I have a view for a blog post that return a view model with the post and the comments, and an anchor point at the end of the page where the comment form is. After i submit the comment form, i want ...
1
vote
2answers
58 views

Windows authentication hybrid

I am using windows authentication for an intranet MVC application. I want to add additional logic to the authentication process. In other words as well as existing in AD, the user must also exist in a ...
1
vote
1answer
260 views

How to show a nicer error then :“A potentially dangerous Request.Form value was detected from the client”

While doing some hacking on my own site I encountered (after some googling) a common problem. "A potentially dangerous Request.Form value was detected from the client may it be a XSS attempt or a ...
1
vote
2answers
240 views

A PHP MVC framework close to ASP.NET MVC implementation

I wonder if there is an ongoing opensource project somewhere that mimics the MVC architecture implementation of ASP.NET MVC in PHP. Some of the key features would be: Model Binders Route Mapping ...
0
votes
2answers
39 views

Using the Azure AppFabric Cache in ASP.NET MVC

I have configured the Azure AppFabric Cache as session provider in my ASP.NET MVC application. How do i store session data in Azure Cache? Is it the same was as with inProc session? Like by using ...
0
votes
1answer
20 views

Adding a class to Html.MenuItem's

I've got a HTML list of menu items generated by MVC 2. <%= Html.MenuItem("Home", "Home", "Index")%> <%= Html.MenuItem("Login", "Login", "Account")%> Which generate in HTML: <li> ...
0
votes
1answer
86 views

Putting several images next to each other in a pdfcell with itextsharp

I'm using itextsharp with a aspmvc project to create PDF versions of some of my pages. I have a very basic parser which takes simple html (plus some style info supplied seperately) and creates a pdf. ...
0
votes
0answers
118 views

Asp Mvc 3 wcf: The underlying connection was closed

I writing ASP MVC3 application, where I try to call WCF service, this method calling from class constructor: private void CreateProxy(EndpointAddress endpointAddress) { ...
0
votes
0answers
20 views

ASP MVC3: What's the best way of submitting an ajax form?

I have the following doubt regarding best practices in ASP MVC. Right now in the application I'm working on there is a form that contains a table that may have lots of records, so when we submit it ...
0
votes
1answer
86 views

Asp Mvc 3 and Synchronization Framework 2.1

I am creating application under ASP MVC 3 on x64 platform, and try to work with MS Synchronization Framework 2.1 for synchronize MS SQL Express and MS SQL Compact 3.5 SP2 Databases. Client and server ...
0
votes
1answer
87 views

Multi lines statements with razor in c#

I try to write a statement with razor syntax that use mvccontrib grid where fluent interface makes statement in a long line. I want to scatter it in multiples lines like this: ...
0
votes
3answers
28 views

How do I display URL that is passed from the model in my View in ASPX?

I have an error message, which is may contain a URL, that gets passed to the view. How do I display part of the message (Mode.errormessage) as a link and not as Html encoded text?
0
votes
3answers
67 views

getJSON is not calling the controller action

I don't know why this is happening since there are other functions in this page that use also getJSON and they do work. I have the following JavaScript Code function openSOPNotesDialog() { ...
0
votes
1answer
46 views

asp mvc 404 when + in url

I have problem with asp mvc 3 application. When I put the + character in a url I always get a 404 error. All requests are ajax get request. If I make this request Test/Details/+ I get 404: ...
0
votes
4answers
226 views

asp.net mvc without entity framework

I am learning asp.net mvc and went through a great tutorial that demonstrated it. The tutorial also used Entity Framework. We have our own data access class which I have to use. I am a little bit ...
0
votes
1answer
142 views

Open URL Into a View(MVC 3)

Hi I have a problem with my Application I am using the MVC 3 with C# and VS 2010. I have a old desktop application where in one form I added a control browser_Navigated for show one page where the ...
0
votes
0answers
58 views

ajax pagination breaks jquery dialog

I have a pagineted list on an ASP MVC app. The view is basically this: <div id="requests"> <script type="text/javascript"> $(document).ready(function () { ...
0
votes
1answer
15 views

ASP MVC 2 application looging to IIS 7

I was wondering, does IIS 7 have any api to use for logging the asp mvc application?
0
votes
1answer
67 views

ASP MVC application deploy problems with Jquery

I'm deploying a simple asp mvc 2 application on my local IIS 7.5 server. But when I try to run some javascript $(function () { alert("works"); }) in view or Site.Master, I ...
0
votes
3answers
369 views

Cannot access a closed Stream while creating a downloadable text file in ASP MVC 3

Im trying to prompt a downloadable text file (.txt), but I get this error: Cannot access a closed Stream. I have looked at simular questions in here: Cannot Access Closed Stream But it was not ...
0
votes
3answers
267 views

MVC Controller Index sometimes 404?

I've added 3 controllers, and for one of them the Index view doesn't work by default. Works(shows index): http://localhost:1767/Employees/ http://localhost:1767/Employees/Index ...
0
votes
1answer
332 views

List<type> parameter in asp mvc controller action returns null and not an empty list

I'm using ASP MVC 3 with jQuery.ajax to post array values with traditional:true. This works fine with an array that has values. My only problem is that if the array is empty in the js then the value ...
0
votes
2answers
259 views

Asp MVC 3: Modifiy Values Sent to View

as far as I understand a ModelBinder can generate class instances out of routedata/formdata. What I'm looking for is a way to manipulate the data handed over to the view before it is consumed by the ...
0
votes
1answer
154 views

Leading spaces appear in textarea when populating from Jsonreult

In an ASP MVC3 application I have the following contoller action: public JsonResult GetJsonStatus(string id) { var statuses = repo.GetEventLogMessages(new Guid(id)); StringBuilder sb = new ...
0
votes
1answer
122 views

NerdDinner difficulties

I'm having a problem with the Create method of the NerdDinner tutorial, which is very good BTW. As you can see here http://nerddinnerbook.s3.amazonaws.com/Part5.htm in the Create method, he removed ...