Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
19 views

I'm learning FE, BE; i did download win32/win64 Openssl, configured live server extension to accept https. But it still redirect my BE https to http. And it really caused a "liveServer.settings....
truonganhvu205's user avatar
-1 votes
1 answer
42 views

I have an ASP.NET MVC 5 web project that I am trying to use with DataTables.js. Despite seemingly following all instructions correctly, the project is still producing errors in the browser console. ...
Inglonias's user avatar
  • 530
0 votes
0 answers
74 views

I am encountering an intermittent issue in my ASP.NET MVC 5 application, where the following error occurs only in production, but not in my development environment (localhost): A transport-level ...
Miguel Henrique Pereira's user avatar
0 votes
0 answers
26 views

My gridview's data gets loaded when the user selects an option to load it. For example, active OR inactive data. The FocusedRowChanged event gets triggered when I select an option for loading this ...
Steve Fernandes's user avatar
0 votes
2 answers
106 views

My code: int total = Convert.ToInt32(form["REC-tr-total"]); int value = 0; string insValOutput = ""; if (total > 0) { for (int i = 1; i <= total; i++) { value = ...
Austin Lazarus's user avatar
0 votes
1 answer
77 views

I have a simple application; given a SpecificationName, it will load all attributes for that SpecificationName. SamplesController: public ActionResult Create() { SampleVM samplevm = new SampleVM()...
Eric's user avatar
  • 3,270
0 votes
1 answer
54 views

I have two ASP.NET MVC 5 applications - one if I put a breakpoint at: Public Sub Configuration(app As IAppBuilder) This breakpoint is hit, and the app runs fine - the other it just skips it and loads ...
gchq's user avatar
  • 1,803
0 votes
1 answer
655 views

I recently installed Visual Studio 2022 Community Edition on Windows 11 and tried to load a .NET MVC 5 application. However, the project appears as (unloaded) in the solution. When I attempt to reload ...
Kash's user avatar
  • 245
0 votes
2 answers
192 views

Im puzzled with this 2 days already. I have model for a Total field as decimal [Display(Name = "Harga")] [Range(0, 999999999999, ErrorMessage = "Harga tidak boleh kurang dari 0&...
Jun Rikson's user avatar
  • 1,904
0 votes
1 answer
167 views

I am using a bootstrap 5 template (I have the minified version), which looks like this. This file is generated using gulp: I want to include this file in ASP.NET MVC 5 bundle, as it adds the cache ...
Hooman Bahreini's user avatar
0 votes
0 answers
43 views

In my Index.cshtml in ASP.NET MVC 5, I have the following code and it works fine. <div>@Html.DisplayNameFor(model => model.IsEnrolled) Enrolled </div> But, if I replace the same code ...
khurj's user avatar
  • 19
0 votes
2 answers
66 views

I have a partial View page (ManageFile.cshtml) which is being used to upload and download files based on the current page and id. Since this View is partial, I am able to utilize it throughout my ...
Andrew C's user avatar
  • 117
0 votes
1 answer
49 views

I have a partial view in MVC5 that displays a document viewer and a button that lets users upload a document. I want to be able to reload the contents of the partial view or just reload the entire ...
Ephraim Ross Jacinto's user avatar
1 vote
1 answer
42 views

I am unable to keep both routing rules working using Url.Action("action", "Controller") without adding new { Area = "" } in the link. Is this possible? Please help.
capitalmotions360's user avatar
1 vote
1 answer
57 views

I have a basic ASP.NET MVC5 app with a Restaurant class as my model and I am currently using the default out of the box routing. /Restaurant/Create /Restaurant/Details /Restaurant/Index Previously ...
Daark_Archer's user avatar
0 votes
1 answer
34 views

public ActionResult MojeTeme() { var db = new Palindrom.Models.Baza1Entities(); var db1 = new Palindrom.Models.Entities(); var db2 = new Palindrom.VjuModeli.ProfilKorisnika(); var ...
potatomen D's user avatar
0 votes
1 answer
47 views

I'm using the good old OWIN Facebook login for years now in an old .Net 4.8 MVC website. Since a few weeks it doesn't work anymore. The Google one is working fine. I enabled Katana logging and it ...
kloarubeek's user avatar
  • 2,864
0 votes
1 answer
70 views

I'm currently involved in a legacy ASP.NET MVC 5 project utilizing EF 6. The project demands the selective exclusion of a global filter in certain actions to retrieve soft-deleted data. While ...
user2903753's user avatar
0 votes
1 answer
690 views

I am new to Azure build pipeline and some extent I have managed to create a build and publish artifact. Issue: when build is ready and I am copying artifact and it goes to some weird path which I can ...
Kaushik Thanki's user avatar
1 vote
3 answers
90 views

My model is always be null when sent back to controller. I tried many way to solve it but nothing worked. I check the network tap after submit the button and see all values are correct but in ...
Manatchanok Bumrungban's user avatar
0 votes
1 answer
25 views

One of the values from my webpage is not making it to the controller. I have an OrderDetailsModel model class: public class OrderDetailsModel { public string SerialNumber { get; set; } public ...
user avatar
0 votes
1 answer
286 views

I'm attempting to pass an id (long) plus a list of ids (array) to a controller action. The best luck I've had is getting the id to pass, but I've never gotten the array to post. I've gone through at ...
BrianLegg's user avatar
  • 1,700
0 votes
0 answers
47 views

I want to generate (or display hidden maybe?) different type of form depending on the selected Option in a DropDownList. What would be the best way to do that? I have tried having in the base view ...
Nikola's user avatar
  • 138
0 votes
1 answer
202 views

I am working on a project in ASP.NET Framework 4.7.2 which uses Azure AD and MSAL to access data from server API within my company. However all the Microsoft tutorials are for .NET Core, and there no ...
Ibrahim Memet's user avatar
0 votes
2 answers
64 views

I have a model like this : public class PortStackingDetails { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } public int? ...
Jun Rikson's user avatar
  • 1,904

1
2 3 4 5
312