Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
100 views

I have 3 panels and would like to use update panels as follows for better display. ASP.NET / VB.NET Panel 1: 2 text boxes 2 drop down lists Panel 2: 2 buttons Panel 3: 3 drop down lists 1 checkbox If ...
t_m27's user avatar
  • 143
0 votes
0 answers
52 views

I have a function PurgeXYZs in the page's aspx.cs file and the page is also linked to a JS file for frontend, i am trying to get results of the function "managexyz.aspx/PurgeXYZs" which are ...
mnol's user avatar
  • 33
0 votes
0 answers
35 views

I am using the ASP.NET WebForms framework and embedding the report using a JavaScript SDK approach. The powerBIReportContainer div does not display the report when it is placed inside an <asp:...
Laxman Lakshman's user avatar
0 votes
1 answer
46 views

I want to implement searching, pagination and sorting in razor pages with Ajax. I use viewcomponents to show data from database, for that these are my code by files in ViewComponent.cs public ...
sunny's user avatar
  • 2,765
0 votes
2 answers
95 views

I want to implement "like" button (only like, not dislike) in my project written on ASP.NET Core 2.1 version. This is discount classified site and want visitors to be able to like posts they ...
Farid's user avatar
  • 21
0 votes
1 answer
36 views

I have a form designed in ASP.NET Core, which contains input text fields, dropdowns and also a table where the user can list their past history of distributorship for various companies. Now I want to ...
Subho's user avatar
  • 3
0 votes
1 answer
75 views

Here is product filtering frontend HTML code: Filtering Sidebar <div class="widget widget-collapsible"> <h3 class="widget-title"> <a data-toggle="...
krmdev's user avatar
  • 1
0 votes
1 answer
51 views

I want to load data to a div by id commentList by Ajax function. I need to send the data to an action named CreateComment by a form tag using Ajax. After creating the comment I need to load the data ...
Ghasem Shahrokhi's user avatar
0 votes
1 answer
81 views

I am working on an ASP.NET webforms project written in VB.Net. I want to call a web method in the code behind using Ajax. The button click event correctly calls the code behind method. However after ...
Massey's user avatar
  • 1,131
0 votes
1 answer
40 views

Im trying to make a single view crud operation on ASP.NET MVC and having trouble getting data from ajax call and display it on a input field. here the json actionresult heres the ajax call heres the ...
Mark Anthony Cada's user avatar
0 votes
1 answer
133 views

I am using ASP.NET MVC for a project and I have a datatable which is working fine when the page loads but when I submit a form for searching it returns the correct response in json but it does not ...
skyusman's user avatar
0 votes
1 answer
54 views

<script type="text/javascript"> $(document).ready(function () { $('#vehiclesTable').DataTable({ "processing": true, "serverSide":...
Morbidd's user avatar
0 votes
0 answers
56 views

In this jQuery code, what I'm trying to achieve is that when the logged-in user clicks the follow button, the tweets of the person they are following should appear on the dashboard, and the follow ...
Corewien's user avatar
0 votes
2 answers
160 views

What is the best and secure way to pass Jwt token to ajax request call. I have two options Option 1. Pass jet token in ajax headers as below but Jwt token is visible in client response. $.ajax({ ...
user22366014's user avatar
0 votes
0 answers
52 views

I have a C# MVC project , in which I am trying to select all the checkbox using header checkbox in table. but on selection it only selects first page data not all paginated data. I am using AJAX for ...
Pmd's user avatar
  • 51
-1 votes
1 answer
39 views

***I am trying to pass a list from controller to ajax in success. Its a post request from ajax. *** When I am trying it comes as [model model] *This my controller public JsonResult CreatePackage(...
Rajat Bhandwalkar's user avatar
1 vote
1 answer
498 views

I'm encountering an issue where my AJAX call isn't reaching the controller method in my ASP.NET Core application. Despite setting up the AJAX call and controller method, I'm receiving a 404 error. ...
akhilesh jain's user avatar
0 votes
1 answer
106 views

I want to display the list of cities of each state in a modal form when the user clicks on that state. Unfortunately, whatever I did, I could not solve this problem. I will show the ASP.NET Core code ...
koorosh nadimi's user avatar
0 votes
1 answer
40 views

I am trying to pass data from a view to my controller. I am getting the values in Ajax correctly, but I am unable to pass them to the controller. I get the comment in controller as null always. Ajax ...
M.Jafar's user avatar
  • 83
0 votes
1 answer
35 views

I am working with a very large project that is running on ASP.NET framework. I am trying to add some new functionality to make the application more userfriendly and I need to use ajax. I have used ...
ns95's user avatar
  • 23
0 votes
0 answers
67 views

enter image description here Hello friends. I'm asking for help with something. I want to set up a structure in the asp.net core web mvc project. In fact, this structure is similar to Google's window ...
ugurgzlks's user avatar
1 vote
0 answers
76 views

I have built a form which take checkInDate and nights as input. But in the backend when I am debugging it is not showing the date correctly. It is displaying nights correctly but checkInDate is shown ...
Anand's user avatar
  • 65
2 votes
1 answer
39 views

I am trying to send an array with about 600 items of type Customer. The latter is a class I am using as a model which contains: public class Customer { int ID {get; set;} string Name {get; set;} ...
user2529011's user avatar
1 vote
1 answer
231 views

Hi everyone I hope everyone and safe and doin’ well. I just really need your help with an error I have been fixing for less than 2 weeks. I have created Asp Net Core Web-App, when I run it with IIS ...
neckart's user avatar
  • 13
0 votes
0 answers
321 views

Feel like I'm missing something obvious (I don't work with javascript or jQuery, I'm just playing around with it in my spare time), but I can't figure out why my ajax request won't work - can't find ...
Ieuan Griffiths's user avatar
1 vote
1 answer
31 views

Here my example JSON return when I using Ajax : { "$id": "1", "$values": [ { "$id": "2", "productId":...
John's user avatar
  • 87
1 vote
1 answer
73 views

I'm working with the WhatsApp Business Cloud API C# Wrapper Library and SignalR in a project to create a real time chat for a webpage. I've managed to separate the messages sent to the website ...
George1917's user avatar
1 vote
1 answer
89 views

I'm trying to filter product data by brand when the person is on the product category page. Here the view product category. So, I want to do the filter by brands by side bar on the left. I use ajax so ...
John's user avatar
  • 87
1 vote
0 answers
23 views

I sent information using ajax but I don't understand why in the controller what I get is always null data. I went crazy and tried everything I could find on here but still no success. Please help me ...
Ngutahu's user avatar
  • 11
0 votes
1 answer
46 views

<div class="col-md-3 ingname"> <input class="form-control ingredient-name" placeholder="Ingredient Name" id="ingredientName[]" name="...
Cypher's user avatar
  • 11
0 votes
1 answer
137 views

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and ...
Cypher's user avatar
  • 11
0 votes
1 answer
196 views

Ok, this is strange, but... This is my Action code (partly): [Route(nameof(BackForm))] [HttpPost] [ValidateAntiForgeryToken] public async Task<IActionResult> BackForm(BackFormDto model, ...
BigMan's user avatar
  • 474
0 votes
1 answer
55 views

When I perform an Ajax get request, the server returns something like this : { "$id": "1", "$values": [ { "$id": "2", ...
John's user avatar
  • 87
0 votes
0 answers
61 views

I working with cascading dropdowns in .NET Core. It works correctly using Ajax. Here is the code: <td> <select id="productList" class="form-select" asp-items="@...
John's user avatar
  • 87
1 vote
1 answer
179 views

I have a .Net 6 Razor pages application where I need to download an excel on a button click via Ajax. I am able to successfully do that by creating a new excel workbook in memory stream using OpenXML ...
Bluemarble's user avatar
  • 2,099
0 votes
1 answer
48 views

As u see the picture , My bootstrap popover triggers and shows “[object Object]” instead of the data I retrieved from database. I put logs on js ajax code and seen that I retrieve data however cant ...
Mr_Bcan's user avatar
2 votes
1 answer
98 views

We have application in ASP.NET MVC 4.5.2 with JQuery 3.3.1 and production we have load balancer and we have 2 nodes of server. We are facing weird behavior when ever we requesting sometime we are ...
Abdul tayyeb shabbir's user avatar
0 votes
1 answer
82 views

I want to make an ajax function that will update my line chart, the data in the line chart should be sorted according to the month. There should be a button that submits a value for the selected month ...
Christopher Edmund's user avatar
1 vote
1 answer
56 views

I'm trying to get accostumed to how ajax works, so I'm just trying to send a string to a C# method (I also tried Json and other types before) but no matter what I change the method seems to always ...
Mattia Demontis's user avatar
0 votes
1 answer
72 views

Hello I'm a bit stuck to display an alert msg with latest version of asp.net core 8 MVC. I have an edit post form with Ajax and this is the code. View code: @{ ViewData["Title"] = "...
user23499049's user avatar
0 votes
2 answers
68 views

I am writing a program that captures a list of variable data, which I am trying to pass through jQuery to an ASP.NET Core 6.0 MVC controller. This is the data model: namespace RTS_RecruiterSystem....
Luis Gerardo's user avatar
1 vote
0 answers
47 views

I need your help, I was trying a master detail create. I followed this project: https://github.com/CodigoEstudiante/067_ProyectoEFMaestroDetalleNet6/blob/master/MaestroDetalle/Controllers/...
And Lozano's user avatar
0 votes
1 answer
53 views

I am trying to use ajaxToolKit CascadingDropdown with three DropdownList Controls that are being populated from an ASMX WebService. The first dropdown is being populated correctly, but when I select a ...
Gabriel Z's user avatar
1 vote
1 answer
918 views

I have been having an issue with one of my websites where it works perfectly fine while developing, but once it gets published and deployed on IIS, the styling for ONLY the account pages doesn't ...
Andog's user avatar
  • 84
0 votes
0 answers
81 views

I am working on an ASP.NET 7 project where I have a Razor page, and I have used Ajax to call the GET method from the C# file. I am calling the GET method from the CSHTML using Ajax to CSHTML.CS. There,...
POKA's user avatar
  • 39
-1 votes
1 answer
388 views

I deployed an app to a local server without access to the internet and I have all my resources local and referenced. However, when it's running, it auto-generates the following code <script src=&...
João Pedro Sousa's user avatar
0 votes
1 answer
2k views

I have a serialised object { a: “test”, B[1].Name : “test”, B[1].Surname : “testing”, Etc. But when I sent this object in using ajax Post method in cshtml file, my model is setting the list of b to ...
Coder3000's user avatar
  • 477
1 vote
1 answer
50 views

I am executing a ajax call from the cshtml page of an ASPNET MVC application, which calls an action method Delete from HomeController. The action method catches exception message, if any occurred ...
Vasantha Kumar's user avatar
-1 votes
1 answer
114 views

I am trying crud operation using popup and jQuery but at start I only try to show data from database in table using jQuery Ajax. It does not show error message but not fetching data from database. I ...
usama ishtiaq's user avatar
0 votes
0 answers
95 views

I am a beginner in razor pages. Initially on clicking the Movies tab on sidebar, I get the table with movies displayed. Then based on search my partialView updates to display the data. I want to add ...
flash speedster's user avatar

1
2 3 4 5
106