Edited Issue: [CORS] Incorrect Access-Control-Request-Method header case 500....
Send in a CORS preflight request with following header:'''Access-Control-Request-Method: http://example.com'''The returned status code is 500. This is an client error so the reasonable status is...
View ArticleCommented Issue: [CORS] Incorrect Access-Control-Request-Method header case...
Send in a CORS preflight request with following header:'''Access-Control-Request-Method: http://example.com'''The returned status code is 500. This is an client error so the reasonable status is...
View ArticleEdited Issue: [CORS] If there multiple Access-Control-Request-Headers present...
However in the CORS spec:> Let header field-names be the values as result of parsing the Access-Control-Request-Headers headers.Notice that the last word is "headers" indicate it allows multiple...
View ArticleCommented Issue: [CORS] If there multiple Access-Control-Request-Headers...
However in the CORS spec:> Let header field-names be the values as result of parsing the Access-Control-Request-Headers headers.Notice that the last word is "headers" indicate it allows multiple...
View ArticleEdited Issue: [CORS] Put EnableCors under namespace System.Web.Http [913]
The HttpConfiguration extension EnableCors is under namespace System.Web.Http.Cors in recent build. As a result, to enable cors in WebApiConfig you need to include 'using System.Web.Http.Cors'.In...
View ArticleCommented Issue: [CORS] Put EnableCors under namespace System.Web.Http [913]
The HttpConfiguration extension EnableCors is under namespace System.Web.Http.Cors in recent build. As a result, to enable cors in WebApiConfig you need to include 'using System.Web.Http.Cors'.In...
View ArticleCreated Issue: Owin Adapter should allow responses to be sent chunked [1007]
If a user tries to host a message handler like this with OWIN: public class MyHandler : HttpMessageHandler{ protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request,...
View ArticleCommented Issue: anonymous users for simplemembership provider [384]
dear team,i would like to suggest an improvement for simplemembership provider. I checked the http://msdn.microsoft.com/en-us/library/webmatrix.webdata.simplemembershipprovider(v=vs.111) msdn library...
View ArticleCommented Issue: Installing v2 of the Microsoft.AspNet.Webpages NuGet package...
1. Create a Razor v1 web site2. Open web.config and add the following entry in <appSettings />.<add key="webPages:Version" value="1.0.0.0" />3. Open the NuGet package manager and install...
View ArticleEdited Issue: Microsoft.Web.Helpers.Facebook - LikeBox dont work [286]
LikeBox function use "http://www.facebook.com/plugins/recommendations.php" instead "likebox.php"
View ArticleCommented Issue: Additional '@' characters in Razor code blocks break...
1. In Visual Studio, create a Razor v2 web site.2. Copy and paste the following code into one of the content pages:@{//Check there are slider image page loaded var theCount =...
View ArticleEdited Issue: [Cors] RequestMessageHandlerTracer is not executed for OPTIONS...
__Repro__Setup a CORS enable web site and write a customized trace writer like this:```public class CustomTraceWriter : SystemDiagnosticsTraceWriter{ public override void Trace( HttpRequestMessage...
View ArticleCommented Issue: [Cors] RequestMessageHandlerTracer is not executed for...
__Repro__Setup a CORS enable web site and write a customized trace writer like this:```public class CustomTraceWriter : SystemDiagnosticsTraceWriter{ public override void Trace( HttpRequestMessage...
View ArticleCommented Issue: Razor background parse thread is not IsBackground [688]
The RazorEditorParser's background parser thread (System.Web.Razor/Editor/BackgroundParser.cs) does not have its IsBackground property set to true, which means it prevents the process from terminating...
View ArticleClosed Issue: Razor V2 Bug:Url Resolution Fails if you have Html Comment with...
During discussing a thread in ASP.NET MVC forums, found a bug in Razor V2 in which the auto url resolution(~) will not work if you have an html comment with quotation or apostrophe before the url...
View ArticleEdited Issue: UpForGrabs: Validation should honor member field in...
Reported by a user:The problem I am having is with models like:// the view modelpublic class RegisterModel : IValidatableObject{ public IEnumerable<ValidationResult> Validate(ValidationContext...
View ArticleEdited Issue: Validation should honor member field in ValidationResult [362]
Reported by a user:The problem I am having is with models like:// the view modelpublic class RegisterModel : IValidatableObject{ public IEnumerable<ValidationResult> Validate(ValidationContext...
View ArticleCommented Issue: GetBingHtml method in Maps helper emits literal tags in...
To reproduce this issue, follow these steps:1. In a Razor web site, install the latest ASP.NET Web Helpers Library version using NuGet.2. On a CSHTML page that references JQuery, add the following....
View ArticleEdited Issue: A Small Razor Breaking Change in Razor Section [940]
If you have section like,``` C#@section scriptBlock{ var a = 1; if(a < 3){//}}```Then it will fail in Razor V2 but works in Razor V1. See...
View ArticleCommented Issue: A Small Razor Breaking Change in Razor Section [940]
If you have section like,``` C#@section scriptBlock{ var a = 1; if(a < 3){//}}```Then it will fail in Razor V2 but works in Razor V1. See...
View Article