Refers to the version 4.5 of the ASP.NET web application framework introduced with the .NET Framework 4.5

learn more… | top users | synonyms

31
votes
4answers
12k views

Multiple HttpPost method in MVC4 Web API Controller

I am starting to use MVC4 Web API project, I have controller with multiple HttpPost methods. The Controller looks like the following: Controller public class VTRoutingController : ApiController ...
15
votes
2answers
519 views

Using ASP.NET 4.5 Bundling & a CDN (eg. CloudFront)

ASP.NET 4.5 has a great new bundling feature and appears to have some support for use of CDNs. The example given by Microsoft for use of the bundling feature with a CDN is this public static void ...
14
votes
1answer
5k views

What can I do in C# 5 with .Net 4.5 that I couldn't do in C# 4 with .Net 4? [closed]

I have Visual Studio 2012 RC installed on Windows 8 Release Preview and my question is are there any useful new features not related to Metro, or is Metro what seperates .Net 4 and .Net 4.5? If so I ...
12
votes
1answer
3k views

Is MVC4 baked into .NET 4.5?

A lot of release notes for Visual Studio 2012 talk about .NET 4.5 and MVC4, but I can't tell if MVC4 is actually part of the .NET 4.5 release. Anybody know for sure? I would love not to have to ...
12
votes
1answer
779 views

How should I handle exceptions within a controller constructor in WebAPI?

Say I have a constructor where it's initialization can potentially throw an exception due to reasons beyond my control. FantasticApiController(IAwesomeGenerator awesome, IBusinessRepository ...
11
votes
6answers
402 views

Add color options to System.Drawings.Color

In visual studio, when creating controls in the markup(or in code-behind) you can specify colors in HEX format like this: "#FFFFFF", but you also can select from the list of preset colors like: White, ...
11
votes
2answers
3k views

Build ASP.NET 4.5 without Visual Studio on Build Server

Its been a while since I setup a Build Server so maybe I've forgotten something or maybe .NET 4.5 is different from whatever version I did this with last time, but here is my problem. I'm trying to ...
11
votes
2answers
208 views

Difference between <%: %> and <%#: %> in Asp.Net

I know that we can <%: %> syntax for html encoding that is introduced in .Net 4. But I was reading new features of Asp.Net 4.5, and I got that we have another type i-e <%#: %> that is used ...
10
votes
1answer
491 views

.NET 4.5 MVC RouteCollection.LowercaseUrls breaks when using Area

A new property to RouteCollection was added with .NET Framework 4.5: http://msdn.microsoft.com/en-us/library/system.web.routing.routecollection.lowercaseurls.aspx This works great, until you add an ...
8
votes
1answer
6k views

EntityFramework 5 use dll version 4.4.0.instead 5.0

I have project based on .NET 4.0 but I need to use EntityFramework 5 in my solution. So I install it from the NuGet. After that I change target framework to .NET 4.5 (I'm using VS 2012) and rebuild ...
7
votes
3answers
9k views

Upgrading to ASP.NET 4.5/MVC 4 forms authentication fails

I've just downoaded a VS 2012 along with ASP.NET 4.5 and MVC 4.0 and was kicking the tires with a sample app and found that the forms authentication that works perfectly with ASP.NET 4.0/MVC 3 no ...
7
votes
4answers
2k views

Object of type 'System.Int32' cannot be converted to type 'System.Web.Security.Cryptography.Purpose'

I am getting this error now whenever I try to build. I just installed Visual Studio 2012 and .Net 4.5, but this project is still on 2010. Here is the line of code I am having issues with: private ...
7
votes
1answer
5k views

MVC 3 System.Web.Optimization Bundles single file

In MVC3 C# I'm trying the new System.Web.Optimization Bundles JSminify & CssMinify package (part of the .NET 4.5 framework). I have one main Bundle. On one page in my website, I wish to include a ...
7
votes
1answer
114 views

Writing to ZipArchive using the HttpContext OutputStream

I've been trying to get the "new" ZipArchive included in .NET 4.5 (System.IO.Compression.ZipArchive) to work in a ASP.NET site. But it seems like it doesn't like writing to the stream of ...
6
votes
0answers
84 views

Processing AuthenticationResult's from different providers in the same page

I'm integrating OpenID to my existing application with LiveID and Google providers. On my login page, in addition to the original login fields I have added 'Log in with Google' and 'Log in with ...
5
votes
1answer
2k views

Using Claim-Based Authorization

The new ASP.NET 4.5 code has "re-parented" the ASP.NET RoleProvider to a ClaimsProvider. What I'm trying to figure out, is what would a "claims based" example of authorization look like (preferably ...
5
votes
2answers
2k views

Understanding context in C# 5 async/await

Am I correct that async/await itself has nothing to do with concurrency/parallelism and is nothing more than CPS implementation? And the real threading is performed by SynchronizationContext instance ...
5
votes
1answer
2k views

How to use OpenID providers with unique identifier URLs in ASP.NET MVC4

The new SimpleMembershipProvider implemented in ASP.NET MVC4 allows easy, built-in support for two popular OpenID providers (Google and Yahoo) and three OAuth providers (Microsoft, Facebook, Twitter). ...
5
votes
1answer
5k views

IIS6 and .Net 4.5?

In the past, the .NET framework has been independent from IIS versions, and have worked with IIS 6+. Will IIS 6 be supported for .NET 4.5?
5
votes
4answers
588 views

Is it possible to pass a value to the SelectMethod of a Repeater?

ASP.Net 4.5 introduces new ways to bind data to controls like the Repeater through the SelectMethod property: <asp:Repeater runat="server" ItemType="MyData.Reference" ...
5
votes
1answer
291 views

The predefined type 'System.Threading.Tasks.Task' is defined in multiple assemblies in the global alias

I just have set up a new asp.net mvc 4 project, using the latest .net framework (4.5) in combination with Visual studio 2012. After I added some classes, side projects etc. I suddently notice that I'm ...
5
votes
1answer
765 views

Upload files over 2Gb to IIS 8 / ASP.NET 4.5?

I need to upload 10Gb files to IIS in one piece. As far as I know IIS 7.x / ASP.NET 4.0 does not support uploads over 2Gb (some people say 4Gb). Is it fixed in IIS 8 / ASP.NET 4.5?
5
votes
1answer
416 views

Strongly typed data binding and generics?

Suppose I want to bind a generic type (here: Dictionary<string, string>) to a Repeater using the new ASP.NET 4.5 strongly typed data binding. Then I would have to put down ...
4
votes
1answer
738 views

C# .net 4.5 async delegate

This does not throw compile error, but why? public async void DoSomething(object arg){ ... } Action<object> myAnonActionDelegate = DoSomething; Shouldn't "DoSomething" have a signature of ...
4
votes
1answer
514 views

Repeater control doesn't have public property ModelType

I'm trying to use model binding feature of asp.net 4.5. I'm using Repeater control, seting ModelType property on it, but as soon as I run the application, I'm getting parser error, which states, that ...
4
votes
2answers
124 views

Pre-loading Azure web-site to increase first visit load time

I am right now in the middle of creating a new web application for Azure. I've noticed that if I do not visit the site for a while (30+ minutes) that it will take a while to load (20+ seconds) on my ...
4
votes
1answer
69 views

Error while running via virtual directory using Office Interop

I have used Office Inter op library for converting office docs to PDF. I am getting the PDF well if i run through Visual Studio, but i am getting the following error while running via virtual ...
4
votes
2answers
2k views

asp.net MVC 4 External Login Provider - 'No OpenID endpoint found' (google)

I'm learning MVC 4 (Visual Studio Express 2012) and trying to use the new templates that have baked in openId/OAuth external login support. I've been following this tutorial All I've done so far is ...
3
votes
1answer
4k views

ASP.NET MVC 4 Areas in separate projects not working (view not found)

I have tried to create simple proof-of-concept ASP.NET MVC 4 web site using areas in separate projects. I tried to following tutorials: ...
3
votes
1answer
346 views

ASP.NET Active Directory Search

I'm trying to create an intranet Website on ASP.NET MVC 4 using Windows Login. I have successfully done the windows login. The only thing I am stuck up with is searching the active directory with ...
3
votes
2answers
1k views

ASP.Net webforms - dynamic SEO friendly URL's

I've been reading a lot about the SEO friendly URL features in ASP.Net. Most of what I've read involves taking a URL that uses query-string params and making it pretty. I'm interested in making ...
3
votes
2answers
146 views

ASP.NET MVC 2 site issues when updated IIS7 to .NET 4.5

I have a web app running ASP.NET MVC 2 along with other sites (using ASP.NET MVC 4), updated IIS7 to use .NET 4.5 and my MVC2 app stop working properly: Issue: (blocker) There is a duplicate ...
3
votes
1answer
2k views

Bundling resources via bundle.config vs BundleConfig.cs in ASP.NET 4.5 WebForms

Regarding ASP.NET 4.5's new System.Web.Optimization / Microsoft.AspNet.Web.Optimization: Can anyone explain the difference in the use of bundling resources using the BundleConfig.cs class file as ...
3
votes
2answers
256 views

ASP.NET 4.5 Bundling in Debug Mode - Stale Resources

Is there any way we can make the ASP.NET 4.5 Bundling functionality generate GUID's as part of the querystring when running in debug mode (e.g bundling turned OFF). The problem is when developing ...
3
votes
1answer
278 views

Is it possible to call async Page_Load in asp.net 4.5?

I wish to know whether it possible to call async Page_Load in asp.net 4.5 like async controllers in ASP.Net MVC 4. If it is possible, how do we use async events in asp.net?
3
votes
1answer
548 views

ASP.NET / MVC 4 bundling and minification 404 issues on 64-bit IIS 7.5 server

We recently upgraded our project from MVC 3 to MVC 4. We are targeting the .NET 4.0 framework, and our web app is 32-bit due to some references we have to include. The problem we are having is that ...
3
votes
1answer
114 views

asp.net 4.5 GC perfmon changes?

After weeks of testing we deployed .NET 4.5 (upgraded from 4.0) on our ASP.NET production application. Site functionality is solid as our testing demonstrated. There ARE differences though that we are ...
3
votes
1answer
277 views

.NET 4.5 WebForms: do I (still) really have to specify all 3 templates in a FormView?

Investigating the new strongly-typed, model-binding approach within ASP.NET 4.5 WebForms: In Scott Hanselman's example of WebForms model binding (amongst others) I've seen the use of a FormView that ...
2
votes
1answer
633 views

How to cancel an async WebApi action after timeout?

Using ASP.Net WebAPI, I have a controller with an asynchronous action similar to the following: [HttpPost] public async Task<string> DoSomething(string foo) { var result = await ...
2
votes
2answers
1k views

VS2012 RTM missing .net 4.5 and mvc project templates

On Windows 8 RTM and just installed Vs2012 Ultimate RTM, I'm unable to create a .net 4.5 project nor a .net 4 or 4.5 ASP.NET MVC project. I've done a repair of VS2012, which did not fix it. Is there ...
2
votes
1answer
546 views

Item vs BindItem: Data Binding in ASP.NET 4.5

ASP.NET 4.5 introduces strongly typed data controls. From what I could gather there are two options how to access the data item <%# Item %> and <%# BindItem %> I don't quite ...
2
votes
2answers
347 views

Unable to declare Interface “ async Task<myObject> MyMethod(Object myObj); ”

I'm unable to declare interface IMyInterface { async Task<myObject> MyMethod(Object myObj); } The compiler tells me: The modifier async isn't valid for this item The async modifier can ...
2
votes
1answer
2k views

SimpleMembershipProvider WebSecurity.InitializeDatabaseConnection failing with an empty sql database

I just added a sqlserver connection string. fresh new database. I checked the connection is fine on server explorer. <add name ="club" connectionString="Data Source=server1;Initial ...
2
votes
1answer
887 views

ASP.NET WebAPI XML Serialization after RC update

Prior to the asp.net 4 RC update, I had been using the WebApi for outputting XML. My model had XmlSerialization attributes [XmlElement(ElementName = "the name")] so that I could use friendlier names. ...
2
votes
1answer
431 views

Asp.net 4.5 model binding broken when returning IEnumerable using vb?

I have a gridview as follows: <asp:GridView ID="gv" runat="server" SelectMethod="gv_GetData" AllowPaging="true" AllowSorting="true" AutoGenerateColumns="true"> </asp:GridView> I have ...
2
votes
1answer
156 views

How to detect IIS Express version?

I have found that our ASP.NET application runs differently on different machines in IIS Express. All have VS 2012, .Net 4.5 and Integrated mode. But some has VS 2012 Update 1, some not. How do I find ...
2
votes
1answer
124 views

What are these extra javascript files in my ASP.NET 4.5 WebForms project?

I created a new ASP.NET 4.5 WebForms project and found a bunch of extra javascript files pertaining to GridView, DetailsView and other data related components as well as MSAjax. I assume they are to ...
2
votes
3answers
1k views

IIS_IUSRS and IUSR permissions in IIS8

I've just moved away from IIS6 on Win2003 to IIS8 on Win2012 for hosting ASP.NET applications. Within one particular folder in my application I need to Create & Delete files. After copying the ...
2
votes
1answer
113 views

RegisterClientScriptResource NullReferenceException in a Child IIS Application

I upgraded from .Net 4.5 Beta to the RTM version, and now when I have a standard WebForm page where I had a generic <asp:RequiredFieldValidator /> tag I get a NullReferenceException that looks ...
2
votes
2answers
164 views

azure acs error ID 1113 The specified acs service namespace and management key combination is invalid

I am getting the error even when I gave correct management Service Key error ID 1113 The specified acs service namespace ' xyz 'and management key combination is invalid I am using VS2012

1 2 3 4 5