Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
45 views

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 ...
Ndifreke James Okpo's user avatar
1 vote
0 answers
134 views

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(...
NerdyDriod's user avatar
0 votes
0 answers
80 views

in mvc web app, first chrome memory snapshot is ~ 51mb after i call ajax to re render partialView, second snapshot take double or more! ~ 100bm. and in every call partialview memory usage get larger ...
rahman's user avatar
  • 131
0 votes
0 answers
63 views

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 ...
Matt Spinks's user avatar
  • 6,740
-2 votes
2 answers
129 views

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 ...
TUS's user avatar
  • 33
-3 votes
1 answer
104 views

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....
Bernard Mesh's user avatar
0 votes
0 answers
57 views

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 other FormCustomer import { PlaceholderPattern } ...
M.Alfrandhy .D.D's user avatar
0 votes
0 answers
127 views

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) ...
Camila L. Oliveira's user avatar
2 votes
3 answers
228 views

I installed couple of npm packages in an ASP.NET Core MVC app following instructions at one of the MS Learn's how-to guide: Manage npm packages in Visual Studio After setting up everything, my ...
Khadim Ali's user avatar
  • 2,538
4 votes
1 answer
105 views

I'm new. Let's say I want to create a TableView dynamically based on someString with a query like this: TableView<???> table = new TableView<>(); ResultSet rs = statement.executeQuery(&...
Envy's user avatar
  • 43
0 votes
0 answers
21 views

I have my MVC asp.net core project, it normally worked with structure ProjectName/Views/Main/index.cshtml, but after changing it to ProjectName/Web/Views/Main/index.cshtml, it won't load my views. In ...
user29988285's user avatar
0 votes
0 answers
76 views

I have an ASP.NET Core MVC app that uploads a document to AWS S3 and upon success, adds a row to a database. The project compiles clean, but when I run it the browser throws the following: I have ...
Matt Paisley's user avatar
0 votes
0 answers
71 views

As a university software engineering project, my group has to make a videogame out of the board game Galaxy Truckers (rules summary, if it helps), using the MVC pattern (we're using Java as a language,...
Giacomo Amaducci's user avatar
-1 votes
1 answer
47 views

How could you draw data from the parent tables, through the conjunction table using PDO in PHP & MySQL? I have a Games table with gameId and gameTitle. and a Platform table with platformId and ...
n30n0n3's user avatar
1 vote
0 answers
43 views

I have an ASP.NET Core MVC application where a JavaScript fetch POST request works perfectly on localhost but fails with a 503 Service Unavailable error when deployed to IIS. The request is made to ...
Ali ZIDELKHIR  's user avatar
0 votes
0 answers
39 views

I’m reaching out because I’m encountering an issue when making a request for 3 objects (BLS - SAP MII Transactions) to display information on the screen. The problem is that the last object doesn’t ...
charj's user avatar
  • 13
0 votes
1 answer
24 views

I have an odd problem that I can not seem to resolve. I have an MVC Net8 website. On a Razor view of the website, a few checkboxes show "True" or "False" in the checkbox and not a ...
Gary Whitcher's user avatar
0 votes
0 answers
29 views

MVC page has form. but the control is not hit when debug the jquey code. the breakpoint is not reaching inside of this code : document.addEventListener("DOMContentLoaded", function () { The ...
Dhanasekaran's user avatar
-1 votes
1 answer
82 views

let's say I have a REST API in express. For example this endpoint async function getStoreController(req, res, next) { try { const { id } = req.params; const storeData = await Stores....
Osama Assi's user avatar
0 votes
0 answers
77 views

I’m building a Laravel API, and I need to implement a logic where: First, I check if a particular record exists in the database table 1.If the record exists, I want to call an external update API with ...
Sujan Tamangdon's user avatar
0 votes
0 answers
52 views

i have a form submission in my view page as follow: <form class="propertyForm" method="POST" action="<?= url_to('props.estimate.price'); ?>"> <...
Sol Kan's user avatar
0 votes
1 answer
67 views

I just started learning Laravel, and I faced an issue. I made two view files. The first one is home.blade.php and the second one is welcome.blade.php. In the routes folder, web.php, I used the Route::...
Muhammad Shehroz's user avatar
0 votes
0 answers
23 views

We currently use a mix of either approach. Is there a (performance) benefit of one vs the other? example 1: ILogicAPI injected into controller constructor: services.AddScoped<ILogicAPI, LogicAPI>...
John's user avatar
  • 77
0 votes
1 answer
56 views

I was curious if there is a way to make my scripts conditional based on the environment? I've seen some examples similar to mine but for some reason the scripts do not render when published. ...
narue1992's user avatar
  • 351
0 votes
0 answers
49 views

I have seen somewhere we use ModelAndView or Model or String in the method of Controller - how do we actually decide what's need to be used ? I am just confused after reading multiple resources. Can ...
DJHA's user avatar
  • 1

1
2 3 4 5
672