Tagged Questions

14
votes
2answers
7k views

Request Validation - ASP.NET MVC 2

Has request validation changed for ASP.NET MVC 2, more precisely, not validating? I did the following: Web.configs (in App directory and Views directory) <pages validateRequest="false" ...
7
votes
1answer
3k views

What is the correct usage of “runAllManagedModulesForAllRequests” in ASP.NET MVC2/3?

I've read various posts and questions about the use of runAllManagedModulesForAllRequests in the modules section of <system.WebServer> and I'm concerned that I'm using this setting incorrectly. ...
5
votes
2answers
572 views

Optional route parameters in ASP.NET 4 RTM no longer work as before

I upgraded my project to ASP.NET 4 RTM with ASP.NET MVC 2.0 RTM today. I was previously using ASP.NET 3.5 with ASP.NET MVC 2.0 RTM. Some of my routes don't work suddenly and I don't know why. I'm ...
4
votes
3answers
151 views

In ASP.NET MVC, what is the difference between <%= and <%:?

I'm new to ASP.NET MVC. I've seen both <%= ... %> and <%: ... %>. I'm familiar with the first from classic ASP days, but not the latter. What is the difference between the two?
3
votes
1answer
401 views

Error in ASP.NET MVC 2 View after Upgrading from ASP.NET 4.0 RC to RTM

In my View, I am trying to loop through a list in a LINQ object that as part of my View Model. This worked fine earlier today with the VS2010 RC and the .NET 4.0 RC. <% if ...
3
votes
1answer
56 views

Why do you return the image generated by a Chart control, rather than use it in a view in ASP.NET MVC?

Why can't you use the Chart control directly in views? Why do you have to return the image generated?
3
votes
2answers
749 views

What version of ASP.NET MVC 2 do I install on my Web server if I developed a solution using ASP.NET MVC 2 on Visual Studio 2010 Beta 2?

If I develop a site using the version of ASP.NET MVC 2 that ships with Visual Studio 2010 Beta 2, what do I install on my Web server to get to run correctly? From what I've gathered, there are two ...
2
votes
3answers
39 views

send pdf statement without saving on application server

Requirment: To generate invoice in pdf format on company template and send it in email. Approach I used: Placed the company template at path: ~Content/InvoiceTemplate/ Using iTextsharp Pdf ...
2
votes
2answers
70 views

asp.net MVC routing problem

I had made a website bulkpedia.com In this i had use ASP.NET Routing mechanism in the way {type}/{query} whenever there is a query that contains a period, it shows me a 404 error e.g. ...
2
votes
5answers
458 views

HTML Email created with ASP.NET MVC 2 View (standard view engine)

Is there a way to email an ASP.NET View using the standard view engine (not spark)?
1
vote
2answers
26 views

pass param to RenderPartial

I've asp.net mvc 2 WebSite. There is one page as: <div id="sidebar"> <div id="navcontainer"> <h2> Items:</h2> <ul ...
1
vote
2answers
137 views

Best way to detect major search engines in C# MVC

I found the following question but if possible I don't want to have to make changes that will affect all sites on the server. HttpBrowserCapabilities.Crawler property .NET I also found instructions ...
1
vote
2answers
169 views

ASP.NET MVC+ELMAH - Controller methods taking a very long time to respond when an exception occurs

I'm working with a web application I built in ASP.NET MVC. It is deployed to IIS 7, and I have it configured to log exceptions with ELMAH. The problem I'm facing is that when an exception occurs in a ...
1
vote
1answer
242 views

MVC 1.0, .Net 4.0, and Expression Blend 4

I am trying to open a MVC 1.0 project compiled with the .net 4.0 framework in Expression 4. The solution opens fine, but there is no intellisense and when I run it, it shows an html browse page with ...
0
votes
1answer
23 views

Passing Title to WebForms Master Page from Razor Pages

I'm trying to pass a value to Page.Title in a nested WebForms Master Page, from my Razor layout page (_layout.cshtml), or anywhere else inside razor. I've tried using various combinations of ...
0
votes
2answers
65 views

GoDaddy Send Email

I am using ASP.Net 4.0 with MVC 3 and C# to try and send an email from my site. This code works on other hosts but for some reason GoDaddy is erroring out. Here is the code I am using. var fAddress ...
0
votes
1answer
346 views

Getting ScriptManager's ServiceReference generated JavaScript in ASP.NET MVC 3

When upgrading an ASP.NET 4 (3.5 rendering) WebForms application to MVC 3, how can I get the same JavaScript generated by ScriptManager for a ServiceReference of an ASMX file? I have an ASMX web ...
0
votes
1answer
66 views

What's the proper configuration or routing so that Default.aspx, “”, and “~/” don't get routed?

I've got glimpse. it's highlighting an empty line on the routes tab Match Area Url Data constraints DataTokens True Root -- -- Locally it seems cassini doesn't properly emulate a virtual ...
0
votes
0answers
106 views

Tiggering a ASP.NEt4 MVC3 Model Class containing an SQL Stored Procedure method for inserting data to a table

Need instruction on how to trigger from a View Page, an MVC Model Class 'CreateStudentRecordsClass' that has a method to execute a Stored Proceedure that inserts data. Here is my code: //Gets ...
0
votes
2answers
138 views

Persist ViewModel data from GET to POST

I have 2 action methods: [HttpGet] public ActionResult Customize() { return View(new CustomizeViewModel { Thing1 = "test", Thing2 = "test" }); } [HttpPost] public ActionResult ...
0
votes
1answer
378 views

Get binary from uploaded file (image) in ASP.NET MVC

I'm using the following code: <form action="" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> ...
0
votes
2answers
137 views

ASP.NET MVC - How to make it work with IIS6

I am having some issues with deploying my MVC 2 application on a IIS 6 server. I have the following project structure: / App/ Controllers/ Helpers/ Infrastructure/ ...
0
votes
2answers
73 views

showing errors from actions in table-based views

I have a view where I want to perform different actions on the items in each row in a table, similar to this (in, say, ~/Views/Thing/Manage.aspx): <table> <% foreach (thing in Model) { ...
0
votes
1answer
60 views

asp.net mvc with .net 4.0

Ok... I am currently upgrading a project from asp.net 3.5 using asp.net mvc 2.0. Im having a number of issues regarding namespace conflicts and other such lovely stuff. I was hoping someone could ...
0
votes
3answers
1k views

ASP.NET Web Site Administration Tool unkown Error ASP.NET 4 VS 2010

I was following the MVCMusic tutorial with an machine with full sql server 2008 r2 and full visual studio professional, in ASP.NET 4.0 and when I got to the page where it sets up membership (near page ...
0
votes
1answer
86 views

Will an ASP.NET MVC 2 app build with the .NET 4.0 RC and VS2010 RC run on a prod server with the .NET 4 RTM release?

I have an MVC2 app I developed with the VS2010 RC and the .NET 4.0 RC. My production server and my client's production server have .NET 4.0 RC. Can the RTM of .NET 4.0 on a server support an app ...