Content
How I can do raw query in jquery datatable to acces to the files from sqlserver file table?
Hi, I have an asp.net core 5 application that displays the entire sqlserver file table content. My question is : How can open the file in colunm Name? I would like to modify the code below (extract from jquery-datatable-in-aspnet-core …


ASP.NET CORE server side processing to acces to the files stored in FILE TABLE ?
Hi, first I want to create an ASP.NET core application linked to the FILE TABLE to open the files directly in my interface After several attempts I was able to implement in my interface the links of my files to be able to consult them. In the FILE…
JsonConvert System.ArgumentNullException : 'Value cannot be null. Arg_ParamName_Name'
Hi, I tried to do the tree view structure. The code behind is public string TreeViewJSON { get; set; } public void OnGet() { List<TreeViewNode> nodes = new List<TreeViewNode>(); …
API ASPNet COre Views the file in SQL FILE TABLE
Hi, I am following up on the post I made api-to-connect-a-filetable-in-blazor-wasm.html I've reproduced an application following this example : src I only see the files that I have upload. I don't see all the files in the FILETABLE. So…
how display directories and files to open the files in server side in datatable?
Hi, I've an application aspNet core 5 razor page to display several datatable associated to the view in sql. the view is : The data is located in File Table where is the files and directories. Right now my application returns…
View File Table SqlServer in ASPNET.CORE
Hello, My application aims to display the contents of the File Table on my web interface. This post follows another post : api-aspnet-core-views-the-file-in-sql-file-table.html I've implemented all things to acces to the File Table and I've…
Why js,css,lib didn't load from wwwroot?
I made a simple ASP MVC (Net Core 3.1) , I leave it as standard, and deploy it under a subfolder of the Apache (/var/www/html/myapps/app/v1) I started the kestrel without any errors, I access the page (ie. https://example.com/myapps/app/v1), it shows…
Access directories and subdirectories in ASPNET CORE MVC
Hi, I want to access all the files and subdirectories of a file table (Sql). I can access the root directory "WebApiUploads_Dir" and return all the files on my interface. However, I don't see all the subdirectories and I would like to…
Asp.Net Core API published. Default page getting 500 error but Weatherforcast api working in Postman.
Asp.Net Core Api published in IIS. default page swagger/index.html not working and Login modules not working. but Weatherforcast api working in Postman. Please help.


Net 6 API - 404 Not found
I have developed my API with .NET 6 and locally, I can see all controllers working and using them through swagger. However when I publish to IIS, I am getting 404 not found. I also have install Net 6.0.1. Windows Server Hosting, Net Runtime 6.0.1…
Troubleshooting 11205 Errors
Hello everyone and thanks for the help in advance. I have a web application that is an endpoint for Twilio phone api to make calls to. The endpoint makes three SQL database calls using EntityFramework Core. The server is running Windows Server 2022. …
Net 6 using session in a custom class
I can easily work with session in a page model like: string SessionKeyName = "logged"; if (string.IsNullOrEmpty(HttpContext.Session.GetString(SessionKeyName))) { …


ASP prompt issue
Hi, In ASP, is there one example to show message prompt below?


How To Populate A dropdown feature In Ef core razor pages
hi , I made a department class.. And I have also A ApplicationUser class responsible for registering a user. While Registering a User I want A department Dropdown Feature Should be Populated From Database . I am new in this field so can Anyone suggest…


How to implement custom elements in blazor 7 (Practical guide) ?
Hi everyone As you know, one of the new features of blazor 7 is custom elements. But there is not enough references & guides which demonstrate how to implement this. for example, I want to create custom element in my blazor server app, then consume…


How to implement trigger on File Table in Sql ?
Hi, How can I implement a trigger on the file table to insert rows in the document table eg strem_id? The simple table call FileDescriptions and is defined as below : public class FileDescription { public int Id { get; set; } …
IIS AspNetCore Module V2: Failed to start application '/LM/W3SVC/1/ROOT', ErrorCode '0x8000ffff'
I have a .NET Core 3.1 Web API project that I am hosting using IIS. Project Details (see target framework): <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> …


A connection was successfully established with the server, but then an error occurred during the login process Error from .Net core WebAPI
Hi, I've an application that uses WebAPI in .Net core 6 and uses Kestrel server. When calling HttpPost request, the code tries to inject data in DB but fails with error: The certificate chain was issued by an authority that is not trusted. Inner…


how to use where in my order-details?
public class Order{ public int Id{get;set;} public int UserId{get;set;} public DateTime CreateTime{get;set;} public List<OrderDetail>OrderDetails{get;set;} } public class OrderDetail { public int Id{get;set;} public int ProductId{get;set;} public…


Unable to Resolve Scaffolding Issue in ASP.NET Core MVC Application
I'm getting the following error when I try to scaffold the Login, Logout, and Register pages. I ran the Visual Studio Installer to and clicked on the ASP.NET web development workflow to ensure I have all of the required tools installed. Version…