Profile Memory Usage of Session State ASP.Net
I’m trying to figure out the size of a particular session state. On one of our heavy pages (lots of data in a table) it gets progressively slower. The issue is resolved by logging out of the system.
I’m trying to figure out the size of a particular session state. On one of our heavy pages (lots of data in a table) it gets progressively slower. The issue is resolved by logging out of the system.
I am looking into purchasing either dev express or telerik to aid in the development of our applications. We are mainly an asp.net outfit but we are starting to make more and more use of silverlight and mvc. I would like to know what people have thought about: Feature set Ease of use Documentation Pricing … Read more
How could I implement a Comet architecture in a ASP.Net MVC?
What security protection does HTML.Encode() afford me when I’m dealing with user input, specifically scripting problems?
Need some help to solve this.
I’m not able to get the current physical path within Application_Start using
So I’m creating a new .Net Framework 4.8 Web API in Visual Studio 2019 and I’m wanting to know how to create the API as a windows service? I can’t seem to find any examples or online resources to do so. I can run the API locally in VS and it opens Chrome and shows the responses under the local IIS Server it spins up. How do I take this same project and compile it as a windows service while still using HTTPS?
Is it possible to add:
I have also tried shielding the ‘/’ symbol in the formatting string, but it didn’t quite work. My final goal is to get the date with the ‘/’ symbols as separators. I guess I can use DateTime.ToString(“dd/MM/yyyy”).Replace('.', '/'), but that feels a bit excessive.