200,877 questions
0
votes
0
answers
11
views
ItexSharp C# Combine multiples PDF with AcroFields specified
I have multiples PDF created with itexsahrp library in C#. Those PDF are created also using AcroFields.Item to create fields and fild them with the users info.
Once Ihave created all this PDF. We want ...
-3
votes
0
answers
48
views
Learning ASP.NET MVC without a way to compile code [closed]
So as the title says, I'm looking for ways to learn .NET without actually coding.
This might be more of a Reddit question but since reddit is blocked on the network I'm currently on I will post it ...
0
votes
1
answer
93
views
Does the dynamic keyword box the value types? [closed]
This project is ASP.NET MVC Framework 4.8 with Entity Framework 6 and uses:
dynamic GetSystemSetting(string paramCode, string paramType)
It contains Int, Float, Bool, String, and Guid values. It is ...
0
votes
0
answers
45
views
Error executing child request for handler: not finding the controller
I'm learning ASP.NET MVC with creating a minimal website which just shows some products.
I want to access my start project which it has layout and for that, I should run the project from /Home/Index.
...
-3
votes
0
answers
59
views
In ASP.NET MVC, is it possible to display a date element in the following format: "MMMM dd, yyyy". The type of the element is date [closed]
In ASP.NET MVC, is it possible to display a date element in the following format: "MMMM dd, yyyy" ? The type of the element is date.
I have used the following code, but it is not working:
...
0
votes
0
answers
33
views
How can I bind the results from a paginated ASP.NET Web API endpoint to a jQuery DataTables table in my ASP.NET MVC view?
I'm attempting to pass paginated results from a Web API to an MVC application and displaying in the View using DataTable. While I've successfully retrieved the data from the server and transmitted it ...
0
votes
0
answers
32
views
ASP.NET MVC Navigator.geolocation.getcurrentlocation sometimes remembers last location and is not refreshed
I have a webpage which allow a user to walk around and click a button to find their position on a map. This can be very accurate but often, if they have clicked the button before, it returns the same ...
1
vote
0
answers
40
views
DevExpress MVC Grid Callbacks Not Reaching Controller After Migrating to Azure AD B2C (OWIN)
I have an ASP.NET MVC web application using DevExpress controls (specifically ASPxGridView and MVCxGridView) that was originally using Forms authentication.
As part of a security enhancement, I’ve ...
-3
votes
2
answers
97
views
How to write a relative path for fetch() that works when my site is deployed in subdirectories? [closed]
Context
I'm building a web application using ASP.NET MVC, and I need to use the fetch() API to send data from the front-end to a controller action. The tricky part is ensuring that the fetch() path ...
0
votes
1
answer
42
views
How to turn off JSON error responses in ASP.NET Framework 4.5
We have an old app and no matter what we do, we can't seem to get it to stop emitting JSON error responses. We want just a generic message that won't expose important security details.
We've compiled ...
0
votes
0
answers
23
views
How to set the correct host name for returning URLs in a REST API using ASP.NET MVC when a binding has been applied?
I want to write a REST API that will expose a set of URLs to different services, I will return these inside a xml/json response. The REST API will need to be deployed/setup on different servers.
What ...
0
votes
1
answer
41
views
Cannot pass validation because lists that populate dropdowns are invalid for some reason
ListingController.cs:
public IActionResult Create()
{
CreateListingViewModel model = new()
{
AllCities = new SelectList(_addressRepo.AllCities()),
AllItems = new SelectList(...
0
votes
0
answers
26
views
IIS Proxy using ARR to communicate with http endpoint using .Net and Rasa
I try to communicate with a Rasa Chatbot hosted by a client from an ASP.NET Core 6 web app hosted by my company with IIS.
The chatbot runs currently on a computer with the address localhost:5005.
The ...
1
vote
0
answers
21
views
exe file not executing from deployed ASP.NET MVC app in TAS (Tanzu /PCF)
I am facing an issue for my ASP.NET MVC web application on .NET 4 being deployed to TAS.
I am trying to do image compression using ffmpeg.exe.
While it is working on my local machine, I get an "...
0
votes
1
answer
42
views
How to convert HttpResponseMessage to ViewResult?
I have an ASP.NET MVC controller endpoint of type ActionResult that returns a ViewResult by calling Controller.View(<some html>).
When integration testing this endpoint is it possible to convert ...