Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
61 views

Pretty much the title. Once that happens, it's game over. I tried debugging it and although success == true, the debugger goes to the { and then directly to the closing } of the function, it simply ...
NewCoder1423's user avatar
0 votes
1 answer
96 views

I had a problem with logger invoked from Quartz <target name="logfile" xsi:type="AsyncWrapper"> <target name="logfileInternal" xsi:type="File" ...
 gildraus's user avatar
0 votes
0 answers
98 views

Something weird is happening with my ASP.NET MVC project. I started implementing some razor components for a section of the page that has a lot of UI change with user clicks. This is a snippet inside ...
improve's user avatar
  • 31
0 votes
1 answer
61 views

I posted the same question on the Datatables forum but they could not help me: https://datatables.net/forums/discussion/80946/searchpanes-not-working-correctly-with-razor-mvc#latest I investigated a ...
Petteri Fischer's user avatar
1 vote
1 answer
81 views

I have an ASP.NET MVC application that communicates with a WCF service hosted locally. Currently, I consume the WCF service using a Service Reference added via Visual Studio. The problem is: every ...
Soner Kochan's user avatar
0 votes
0 answers
34 views

On localhost I have set custom error mode off in web.config. There is no Application_Error method in global.asax. I have also commented HandleErrorAttribute in filter.config, but still I am not ...
Heemanshu Bhalla's user avatar
0 votes
1 answer
84 views

I have an action link in my view like this: @Html.ActionLink("", "SendEmail", "SendEmailController", ...) And a controller that creates an action tag <a> with a ...
aleclouisgrant's user avatar
0 votes
1 answer
42 views

I have a .NET MVC app where I'm using Kendo grid. I have a form that a user can fill out and save it as a draft, then come back later and finish it. When I go to edit the form I saved as a draft, I ...
SendETHToThisAddress's user avatar
0 votes
0 answers
28 views

When I am trying to run the validate in the application which try to create the object using the below code I get the error message public static void Validate<TEntity>(this IValidated entity) { ...
user avatar
0 votes
0 answers
944 views

Problem Description: After updating to Visual Studio 2022 version 17.13.16, I'm encountering issues with NuGet package loading. Visual Studio fails to restore or download NuGet packages and shows an ...
Test's user avatar
  • 1
0 votes
0 answers
22 views

In my project I have a modal window (just bootstrap) for add/update operations. @* Add/Edit popup menu *@ <div class="modal fade" id="form-modal" tabindex="-1" data-bs-...
2033's user avatar
  • 13
0 votes
0 answers
36 views

I am implementing a method that receives data from an API. At the moment, the API is adding the data to the database by using a loop. This however is looking more and more unreliable as the data keeps ...
Victor Mwangi's user avatar
0 votes
1 answer
55 views

I have the following typescript in a file called Link.ts: interface LinkConfig { token: string; url: string; redirectUrl: string; } async function postData(config: LinkConfig): Promise<...
coolblue2000's user avatar
  • 5,116
0 votes
0 answers
19 views

I'm working in asp.net mvc To achieve cross-domain re-auth I'm relying on AJAX call where I return response with repost url and then js send request to repost url I modify Controller.Response.Cookies ...
BaltoStar's user avatar
  • 9,151
0 votes
0 answers
53 views

I am working with jQuery datatables, but the datatable is always empty when the page loads. On inspecting the network tab, the request returns an empty response but when debugging the controller ...
Adam Lukman's user avatar
0 votes
1 answer
83 views

I’m working on a school management system (ASP.NET MVC + MySQL) and need to implement update functionality for teacher records with robust validation. Here’s where I’m stuck: Current implementation: ...
Priyank Shah's user avatar
0 votes
1 answer
64 views

I cannot work out why BeginUmbracoForm is generating a form that posts back to the wrong controller. I figure this is due to data within the hidden upfrt field but I cannot find a solution or really ...
monkeySeeMonkeyDo's user avatar
0 votes
0 answers
26 views

I want integrate arcgis as a service in Visual Studio 2022 in an ASP.NET MVC project, to convert address value into longitude and latitude. I tried too many thing that available online.but i didn't ...
SachinD's user avatar
  • 11
2 votes
0 answers
39 views

i have this hub in signalr: using Microsoft.AspNetCore.SignalR; using System.Collections; using System.Diagnostics; namespace BulletControls.Hub { public class ForumHub : ...
redoc01's user avatar
  • 2,529
0 votes
0 answers
71 views

I am supporting an ASP.NET MVC 5-based web project in Visual Studio 2022. I am attempting to add SignalR support, following the instructions at https://enlightsolution.com/asp-net-mvc-5/signalr-with-...
David W's user avatar
  • 10.2k
0 votes
0 answers
36 views

I am using Visual Studio 2022 v17.13.5. I have many desktop (Winforms) and ASP.NET MVC web application projects. For some time now, I have a problem with Visual Studio and it is affecting all the ...
Archana's user avatar
  • 85
0 votes
0 answers
22 views

My first goal is to get the id and code of the language when the user selects a language and keep it in the session. Because I will use the id for database queries and I want to be able to use the ...
khalannz7's user avatar
0 votes
1 answer
134 views

We want to download a PDF file using RDLC Report Designer and use expressions in the footer section to use the Page Number options, but while running the file, the below error is coming, and when we ...
Parth Sharma's user avatar
0 votes
1 answer
230 views

We're using a database-first ASP.NET MVC application and recently migrated from TFS to Git. We're now following the GitFlow workflow, with separate branches for features and a shared development ...
WillNZ's user avatar
  • 773
1 vote
1 answer
80 views

Edit.cshtml This is my Edit.cshtml file, where I dynamically render form controls and attempt to add validation attributes based on the model's properties. @model Tuple<object, JObject> @using ...
Patel Sahil's user avatar