Generating Web application code from JSON sample data

catalogue introduce How does it work? Create data model Rendering code BootGen SDK Framework plug-in Web application In this article, you will understand the internal working principle of BootGen, a code generator that can create ASP.NET 5 and Vue 3 applications based on JSON datasets. introduce { "users": [ { "userName ...

Posted by phpfre@k* on Mon, 11 Oct 2021 12:38:39 -0700

Modification of zabbix user and group permissions and admin password

zabbix user and group permissions summary All users in zabbix access the zabbix application through the Web front end. Each user is assigned a unique login name and password. All user passwords are encrypted and stored in the zabbix database.Users cannot use their user name and password to log in directly to the UNIX server unless they are a ...

Posted by andy1398 on Sun, 10 Oct 2021 10:44:37 -0700

HTTP request in Blazor WebAssembly application

In my previous article HTTP request in Blazor Server application, I introduced the related technologies of HTTP request in Blazor Server application. In Blazor Server App, you can access all. NET class libraries and components. However, if you create a Blazor WebAssembly application, your code will run in the browser sandbox of the client, an ...

Posted by pragma on Fri, 10 Sep 2021 19:17:05 -0700

ASP.Net reads data from Excel and inserts it into the database by column

1. Redo After working, I found that life passed quickly. In a twinkling of an eye, it has been more than a week since I last posted a blog, and it has improved a lot this week. Integrate the successful code tested on your own computer into the corresponding modules of the project. There are also many difficulties. First, the database connecti ...

Posted by jefrat72 on Tue, 07 Sep 2021 22:37:39 -0700

Asp Net Core Api file stream upload

Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it 1, File stream Next, let's see how to upload large files with file stream to avoid loading all uploaded files into the server memory at one time. The trouble of uploading with file stream ...

Posted by qazwsx on Wed, 01 Sep 2021 15:02:30 -0700

Hand in hand to teach you to write a visual code generator based on sqlsugar 4 (generate entity, take SqlServer as an example, the source code is attached at the end of the article)

In the development process, it is inevitable to create entity classes. Tables with fewer fields can be written manually. However, if more fields are created manually, it is a waste of time. If a table has more than 100 fields, handwriting is not realistic. At this time, we will use some tools, such as dynamic soft code generator, code generator ...

Posted by bubbadawg on Mon, 22 Jun 2020 21:42:08 -0700

ASP.NETCore Output Folder Content as Compressed Package File Method

This article mainly tells you a way to save memory, output the contents of the entire folder as a compressed package, but in fact there is not so much memory to apply for, nor need to upgrade to create a compressed package file.The idea is to read the files one by one and output them in a compressed package format The method on each request ...

Posted by dearmoawiz on Mon, 15 Jun 2020 18:14:04 -0700

C × / vb.net add SVG picture to PDF, convert to PDF

The following content describes how to add SVG pictures to PDF documents and how to convert SVG pictures into PDF documents in C ා program. 1, Environmental preparation Download the PDF class library tool, fire.pdf for. Net hotfix 6.5.6 and above (pay attention to the version information when downloading). After downloading, extract the file, ...

Posted by heerajee on Thu, 14 May 2020 07:32:56 -0700

Statistics of ASP.NET simple hot words

1, Function introduction The user enters a character in the search box to associate hot words that begin with that character in a week.   2, Functional design: 1. Hot words list Insert a piece of data each time you search   CREATE TABLE [dbo].[SearchDetails]( [Id] [uniqueidentifier] NOT NULL,--ID [KeyWords] [nvarchar](255) NOT NULL,--S ...

Posted by maheshbaba on Sat, 09 May 2020 07:10:29 -0700

Web Api service registration and discovery based on Zookeeper

Installation and differences Please refer to my last article for Zookeeper installation http://www.cnblogs.com/woxpp/p/7700368.html   Service provision and consumption based on Nginx    Service registration and discovery based on zookeeper    The load balance of zk can be adjusted. Nginx is only able to adjust the weight, and other things t ...

Posted by Tarsonis21 on Sun, 03 May 2020 18:18:58 -0700