0
votes
1answer
94 views

C# Substring() bug in .NET v4.5? [closed]

I'm a little puzzled on why does the Substring() function not working properly. It just won't chopped off the comma at the end of the string. See example code below... public static string ...
0
votes
1answer
35 views

SignalR Adding/Removing Connections from a dictionary and finding Group values from dictionary

I have Organizations that login to an asp.net website and when each member logs in I add their ConnectionId and OrganizationId to a static ConcurrentDictionary named OrganizationMembers in a SignalR ...
0
votes
0answers
35 views

Dependencies not loading or partially loading

I am trying to work with the MS Lync UCMA 4.0 sdk and just switched to using Visual Studio 2012 (becuase .NET 4.5 Framework is required). I can't figure out what is going on here, I've set the Target ...
7
votes
1answer
168 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 ...
1
vote
1answer
63 views

How do I install the .NET Framework 4.5 reference libraries on Windows Server 2008 R1?

I have an application whose deploy process builds the source code on the server I'm deploying to. My production server is Windows 2k8 (not 2k8 R2). My app is not compiling as the reference ...
1
vote
2answers
125 views

.Net 4.5 custom claims not recreated

I have searched on this subject and am just getting more confused. We have a Forms Authentication web application. I have changed the old FormsAuthentication.SetCookie statement to instead create a ...
0
votes
1answer
204 views

.NET 4.5 SessionAuthenticationModule

I am trying to use a SessionAuthenticationModule to create a token and write it to the cookies instead of using the old FormAuthentication.SetAuthCookie. This is so I can also add claims to my ...
1
vote
1answer
58 views

Is it possible to make aspnet ModelBinding work in .Net Framework 4.0 Web Forms?

We have a couple of relatively large Web Forms web application projects, but we are limited on using the .net 4.0 because some of our clients are still using Windows Server 2003, and the .net4.5 is ...
0
votes
2answers
444 views

.Net 4.5 bug with MVC4

I'm struggling with a framework 4.5 problem. Our asp.net mvc4 web app is running well on a 2008R2 server with .net 4.0 installed but when we upgrade the framework to .net 4.5 we seem to hit some kind ...
3
votes
1answer
118 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 ...
0
votes
1answer
226 views

Lost access to HTTP Request after upgrade to .NET Framework 4.5

I have a WCF service that accepts a POST request from jqGrid in the form of HTML form and returns JSON. While things were on .NET 4.0, all worked fine. I could access form fields inside the service ...
1
vote
1answer
64 views

Targeting .Net 4.5 but Glimpse reports .Net 4.0

I have an ASP.NET web app which targets .Net Framework 4.5. However Glimpse is reporting .Net 4.0 in its stats for the app. Is this normal? I know that 4.5 is an in-place replacement for 4.0. Is that ...
-1
votes
1answer
641 views

.net 4.5 Asp Mvc -> Error 403.14- IIS 7 - Windows Server 2008 R2

When I want to deploy an MVC 4 (.net 4.5) application to my iis i got the 403.14 calling me that the content ist not browseable. This also occurs when i deploy the unchanged mvc 4 template. when ...
0
votes
0answers
131 views

Best way to develop .Net applications with WIF .Net 4.5 and VS2012 in a team [closed]

I've started to learn WIF in order to use it for authenticating users but I can't find a good way to develop application with my team. What would you suggest to do it? How are you doing it from ...
2
votes
1answer
706 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 ...
13
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 ...
0
votes
3answers
3k views

Failed to load viewstate. The control tree into which viewstate is being loaded

I am receiving the following error message after an HTTP POST on an ASP.NET form hosted inside a UserControl: Failed to load viewstate. The control tree into which viewstate is being loaded must ...
1
vote
1answer
249 views

Request validation in ASP.NET 4.5 RC in Umbraco

I have a textbox in my ASP.NET 4.5 RC WebForms app which needs to accept potentially HTML. I have researched this and have done the following to allow this to happen: In web.config I have set ...
19
votes
1answer
6k 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 ...
0
votes
1answer
122 views

sporadic NullPointerException in CurrentModuleContainer.Get Asp .Net code when doing async handling

I have an Asp .Net application for which I'm using the new async/await paradigm with .net 4.5 RC. I am using the new task-based async http handler HttpTaskAsyncHandler for handling http request. In my ...
0
votes
0answers
206 views

Cannot get net 4.5rc to work

I have installed .net 4.5rc from http://msdn.microsoft.com/en-us/netframework/hh854779.aspx because I would like to use the new spatial features when developing with visual visual web developer 2010 ...
1
vote
1answer
473 views

Castle.ActiveRecord.dll not compatible with ASP.NET MVC 4 Web API

MSFT claims that .NET 4.5 is backwards compatible with .NET 4. I went ahead and installed .NET 4.5 and VS 11, then created a new ASP.NET MVC 4 Web API project. When I reference the ...