|
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|
|
Hi,
I am trying to add a style class to a blazor component, with isolated style method and when I add the style class on the blazor component located in the index.razor file, the blazor component disapears.
I am doing that on a Webassembly Blazor project.
So:
I have followig files:
-Index.razor, where I want to display the razor component
@page "/"
<PageTitle>Index</PageTitle>
<h1>Hello, world!</h1>
<div class="displayStyle">
<DisplayComponent/>
</div>
Welcome to your new app.
<SurveyPrompt Title="How is Blazor working for you?" />
-DisplayComponent.razor, where the component is defined
<div>
<h3>DisplayComponent</h3>
<h6>how cool, it works</h6>
</div>
-DisplayComponent.razor.css where the style class is defined
.displayStyle{
margin:7px;
}
So please help me understading and implement this concept of isolated style.
When I add class="displayStyle" on the display component in index.razor the content of the "DisplayComponent" disappear.
I keep testing but I can't manage implementing a class on a blazor component with isolating style metgod.
Give me some sugestions please. What I am missing?
Thank you.
modified 3-Sep-24 0:45am.
|
|
|
|
|
I had discovered where the issue was, I am using google Chrome and I had to clear the cache memory, and when I did that I had to check more checkboxes.
I hope that my post help others.
Thank you,
|
|
|
|
|
To use isolated styles correctly:
In DisplayComponent.razor, apply the class directly:
<pre><div class="displayStyle">
<h3>DisplayComponent</h3>
<h6>How cool, it works</h6>
</div></pre>
In Index.razor, remove the class from the wrapping <div>:
<pre lang="HTML"><DisplayComponent /></pre>
that's how the component will display with the styles applied correctly.
|
|
|
|
|
Hello, We enabled Windows Authentication for our development website a few weeks ago.
Now, after I disable it, the site shows only the 401 page: Quote: 401 - Unauthorized: Access is denied due to invalid credentials. It doesn't offer a login box. It doesn't do anything no matter what URL you try to load, including the home index page, except show that 401 message.
I disabled Windows Authentication on the website and on the server. What could I be missing?
CLARIFICATION:
I disabled Windows Authentication through the IIS Administration plug-in in Administrative Tools. I disabled it at the server level and at the website level. If this is being caused by an overlooked application setting, which would that be?
SOLUTION:
While I disabled Windows Authentication, I failed to re-enable Anonymous Authentication. Doh! Now it works.
The difficult we do right away...
...the impossible takes slightly longer.
modified 15-Aug-24 10:11am.
|
|
|
|
|
Did you enable some other form of authentication?
If not, why would you expect to get a login box/page?
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I'm not expecting a login box, just pointing out that none appears, for completeness.
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
Then, at a guess, you're using some form of authorization restrictions. Without any enabled authentication methods, all users will be anonymous, and will only have access to resources that are explicitly marked as available to anonymous users.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Hello,
In an ASP .Net Core 8 API, we have an issue with the processing of a call that lasts longer than 2 minutes.
It lasts long because we have to parse a ton of files (call can be 5-6 minutes), we know this should be improved, but that's beside the point here.
In a previous version of this API (.Net Framework 4.8), this call used to last just as long, and the API did not reset the connection.
In the .Net 8 version, we get such a message :
Connection id "xxx" reset.
Connection id "xxx" sending FIN because: "The Socket transport's send loop completed gracefully."
Connection id "xxx" disconnecting.
After some googling and copilot'ing, we found that this seems related to Kestrel configuration, so we tried several things:
- serverOptions.Limits.KeepAliveTimeout = TimeSpan.FromMinutes(5);
- Changed a few parameters related to timeouts in IIS
- Changed the timeout parameter from the client app calling the API
.. but nothing works.
Does anyone have experience with this ?
It's clear that the timeout duration has to be adjusted somewhere, but we have no idea where to look.
Thanks in advance
|
|
|
|
|
Ok, so problem solved, my colleague found the parameter that controls this, here's the info, hopefully it will help someone!
In the web.config, you can set the parameter requestTimeout to the value you want, as in :
<system.webServer>
<aspNetCore processPath=".\MyApp.exe" requestTimeout="00:05:00" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="OutOfProcess" />
</system.webServer>
Alternatively you can also set this parameter via the Configuration Editor in IIS.
|
|
|
|
|
you will get the same error if your request runs more than 00:05:00 ,
maybe you can run the long running task in background task/thread (hangfire maybe) and then keep on reading the status from another api method.
=====================================================
The grass is always greener on the other side of the fence
|
|
|
|
|
I have an ASP.net MVC5 app publish on a host provider.
CAS trust level is FULL and app runs fine.
I want to move the app to another host but they only sport CAS Trust level High and below.
I found this reference earlier:
"ASP.NET MVC 5 does not support running in anything other than full trust. Microsoft have provided guidance for hosters to move away from using CAS trust levels and use proper OS-level isolation instead."
and forwarded it to the new provider.
They responded that they are running IIS10 and Windows Server 2019 and the statement above does not apply.
Could someone please answer definitively as to whether ASP.Net MVS5 apps require FULL Trust level on IIS10/Server 2019? Current link to source would be appreciated.
|
|
|
|
|
Your new hosting providers are idiots. Take your business elsewhere.
Just because the linked support article doesn't explicitly mention IIS10, that doesn't mean it "does not apply"; it means it applies to everything from IIS 6.0 (Windows Server 2003 SP2) onwards. Unsurprisingly, Microsoft don't go back and update every article written for one version of Windows every time a new version of Windows is released, just to add "still applies to Windows x.x".
CAS has been deprecated since 2009 / .NET Framework 4.0:
Enabling CAS Policy Compatibility Mode for a Project - .NET Blog[^]
Code Access Security (CAS) has been deprecated across all versions of .NET Framework and .NET. Recent versions of .NET do not honor CAS annotations and produce errors if CAS-related APIs are used. Developers should seek alternative means of accomplishing security tasks.
The fact that your new hosting company are still using "security" techniques that have been deprecated for at least 15 years should have you extremely worried!
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I built a simple 1 page site with Visual Studio 2022 using asp.net. It has a few buttons that display some images and 2 links to a subdomain. No additional modules were used... just published with straight VS.
The host I am using has the CAS trust level default as FULL and it works successfully if I leave it that way.
Now I want to change hosts and the new host does not support a FULL CAS Trust Level, only HIGH.
This is my web.config:
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
https:
-->
<configuration>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<customErrors mode="Off" />
<compilation targetFramework="4.8" tempDirectory="D:\InetPub\vhosts\permitlvonline.com\tmp" />
<httpRuntime targetFramework="4.8" />
<securityPolicy>
<trustLevel name="Full" policyFile="internal" />
<trustLevel name="High" policyFile="web_hightrust.config" />
<trustLevel name="Medium" policyFile="web_mediumtrust.config" />
<trustLevel name="Low" policyFile="web_lowtrust.config" />
<trustLevel name="Minimal" policyFile="web_minimaltrust.config" />
</securityPolicy>
<trust level="High" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.codedom>
</system.codedom>
</configuration>
<!--ProjectGuid: 341B6D57-1384-4224-8AC6-C7F85BF0A4E3-->
I placed the web_hightrust.config file in the same folder as web.config.
This is the error message generated when I set CAS trust level to High. (instead of Full)
[SecurityException: Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) +0
System.Security.CodeAccessPermission.Demand() +57
System.Web.HttpContext.System.IServiceProvider.GetService(Type service) +79
System.Web.WebPages.UrlRewriterHelper.IsUrlRewriterTurnedOn(HttpContextBase httpContext) +128
System.Web.WebPages.UrlRewriterHelper.WasRequestRewritten(HttpContextBase httpContext) +16
System.Web.WebPages.UrlUtil.GenerateClientUrlInternal(HttpContextBase httpContext, String contentPath) +167
System.Web.WebPages.UrlUtil.GenerateClientUrlInternal(HttpContextBase httpContext, String contentPath) +113
System.Web.WebPages.UrlUtil.GenerateClientUrl(HttpContextBase httpContext, String basePath, String path, Object[] pathParts) +150
ASP._Page_Views_Shared__Layout_cshtml.Execute() +620
System.Web.WebPages.WebPageBase.ExecutePageHierarchy() +252
System.Web.Mvc.WebViewPage.ExecutePageHierarchy() +148
System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage) +122
System.Web.WebPages.<>c__DisplayClass40_0.<RenderPageCore>b__0(TextWriter writer) +309
System.Web.WebPages.HelperResult.WriteTo(TextWriter writer) +18
System.Web.WebPages.WebPageBase.Write(HelperResult result) +108
System.Web.WebPages.WebPageBase.RenderSurrounding(String partialViewName, Action`1 body) +89
System.Web.WebPages.WebPageBase.PopContext() +310
System.Web.Mvc.BuildManagerCompiledView.Render(ViewContext viewContext, TextWriter writer) +152
System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +378
System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult) +17
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +91
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +795
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +81
System.Web.Mvc.Async.<>c__DisplayClass3_6.<BeginInvokeAction>b__4() +262
System.Web.Mvc.Async.<>c__DisplayClass3_1.<BeginInvokeAction>b__1(IAsyncResult asyncResult) +188
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +60
System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) +38
System.Web.Mvc.<>c.<BeginExecuteCore>b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) +29
System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +73
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +60
System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +52
System.Web.Mvc.<>c.<BeginExecute>b__151_2(IAsyncResult asyncResult, Controller controller) +17
System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +39
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +60
System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) +38
System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute(IAsyncResult asyncResult) +14
System.Web.Mvc.<>c.<BeginProcessRequest>b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) +43
System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +73
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +60
System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +38
System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +13
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +431
System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) +75
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +158
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.8.4718.0
I asked my current host for tech assistance and they did not have an answer but suggested I comment code out of the <system.codedom> section. There is no code to comment out so it's obvious they did not even look at my web.config file.
What do I need to change either in web.config or VS to get it change to a CAS level of HIGH?
|
|
|
|
|
ASP.NET MVC 5 does not support running in anything other than full trust. Microsoft have provided guidance for hosters to move away from using CAS trust levels and use proper OS-level isolation instead:
ASP.NET Partial Trust does not guarantee application isolation - Microsoft Support[^]
For .NET Core / .NET 5+ applications, CAS has been completely removed.
If your host doesn't understand that, or won't adopt the recommendations, then all you can do is take your business elsewhere.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
modified 4-Jul-24 4:05am.
|
|
|
|
|
Thank you for your reply. I forwarded it to my host tech support.
|
|
|
|
|
Hi Sir,
I'm already develop asp.net web application using Visual Studio 2019, when i want to publish the wep app on IIS, all the icon / image on my page not appear. Also no all folder that i create such as Images folder , Logs Folder not included in publish folder.
Can anyone help me? Really appreciate. Thanks
|
|
|
|
|
Based on such a vague problem description? No, nobody can help you.
You need to perform some basic diagnostics. Check how the images are referenced in the page; look at the source of the page in your browser to make sure the paths are correct; check the browser's network tab to see what response you get for the images; etc.
Nobody here has access to your system, so nobody can do that for you.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Is every file in your Images folder tagged as "Content"?
Click on the file in Visual Studio, then look in the Properties window below Solution Explorer. The Build Action for each file should say Content. If it doesn't, change it.
|
|
|
|
|
I have created a test ASP.NET Core MVC application in VS 2022.
I configured individual authentication so it automatically created a database in the (localdb)\MSSQLLocalDB database server for all authentication chores.
I need to deploy the test application to a web server along with its database.
Where in the application do I point it to the web server's database server? The appsettings.json file doesn't contain a connection string for the (localdb), so I don't know if that's the right place for a different connection string.
If you could point me in the right direction, I'll be grateful.
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
The connection string is normally stored in the web.config file. If you haven't yet, try searching the entire solution for 'localdb'.
Jack of all trades, master of none, though often times better than master of one.
|
|
|
|
|
Thanks Ron. I found the place where the default connection string is defined. Problem solved.
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
How do C programming principles influence C# .NET development, and how can understanding C help in mastering C#? Discuss the similarities in syntax, differences in memory management, the role of pointers, object-oriented programming concepts, platform independence, and use case differences. Share your experiences and insights on transitioning from C to C#.
|
|
|
|
|
Don't post the same thing all over the site. Once is enough. Any more than that, and you're going to get eyed as a spammer and treated as such.
|
|
|
|
|
how to fix "assertion failed : unrecognized tag script" error
Anant Patil
Broadllyne Technology
|
|
|
|
|