Is there a way I can set the dotnet version to use for the debugger. I am using the one (debugger) that comes with C# Dev Kit. I currently have dotnet 8 and dotnet 2.2 installed but the debugger ...
I have a trouble trying to find out how to make a little thing, let me explain more below.I have a project using php-laravel, coreui vue and using a MVC Architecture, and i made my whole vue dynamic ...
I am trying to pass a javascript array of objects to a .NET controller action List<> parameter. Below is my C#public bool ImportACE([FromBody] List<Element> elements){ foreach(...
I have following context menu defined as a part of the DataTemplate in xaml:<DataTemplate DataType="{x:Type viewModel:OverviewAnnotationItemViewModel}"> <views:...
in mvc web app, first chrome memory snapshot is ~ 51mbafter i call ajax to re render partialView,second snapshot take double or more! ~ 100bm.and in every call partialview memory usage get larger ...
I have made a Rails edit form, which works fine.Looking into the developer tools I have seen that the HTTP method is POST.Actually I would have expected that it sets the new form to POST and the ...
I am attempting to create a very flexible routing system that allows users to configure their own publishable url paths to their own content pages, sort of like a CMS. To achieve this, I created a ...
I'm migrating from ES5 to ES6 and as a result I'm implementing modules. I have a Core.ts file that has a class Core that holds functions that are used in many .ts files. I migrated Core.ts to be ...
I am developing a process in MVC to take input from a database object and convert the data to an Excel file export. I am using NPOI tool to do this.The current conversion process is made completely ...
I'm trying to export my traderAdmin project as a WAR file using Eclipse. However, the project is not appearing in the "Export > WAR file" wizard. I have another project in the same ...
It appears to be a syntax error though I can't seem to find it in my code.import static org.assertj.core.api.Assertions.assertThat;import org.junit.Before;import org.junit.Test;import org.junit....
I'm currently building a Flutter application and planning to use the GetX package for:State managementRoutingDependency injectionI would also like to follow the MVC (Model-View-Controller) ...
I want to store a data customer with this system, I was copy from other my system. the other system is worked fine but why this system not work as the otherFormCustomerimport { PlaceholderPattern } ...
I have a web page with a map on it, the user clicks a button on their mobile device and it should then show them their position based on their device's geolocation. I have the code which gets the ...
I'm trying to authenticate a user and store the data in the session.I expected that the session should contain the user's data after login, but the current behaviour is that var_dump($_SESSION) ...