1. .NET Remoting .NET Remoting is a distributed application solution launched by Microsoft with .NET. It is known as the preferred technology for managing RPC between application domains. It allows communication between different application domains (communication here can be within the same process, between different processes in one system, between processes in different systems). More […]
Tag: web
[Transfer] [Asp.Net] asp.net (c#) web page jump
Under asp.net, page jumps are often needed. Here are several specific methods. Jump pages are available in most editing languages. Let’s introduce the three page jump methods of response.redirect, sever.execute server.transfer in .net respectively: ①response.redirect This method of jumping to a page is not fast because it takes 2 round trips (2 postbacks), but it […]
Yolov5 web-side deployment for image and video detection
Table of Contents 1. Ideas 2. Code structure 3. Code execution 4. api interface code 5. web ui interface 6. Reference materials 7. Code sharing 1. Ideas By building the flask micro-server backend, we will later build the web front-end through vue. flask is the first third-party library. Like other modules, you can directly use […]
[Transfer] Creation, deployment and use of WebService
WebService, that is, Web service, enables different applications running on different machines to exchange data or integrate with each other without resorting to specialized third-party software or hardware. The first time we chose WebService was to replace the remote connection to the database. We all know that when SQL allows remote connection, a certain port […]
[Transfer] C# calls WebService instance and development
1. Basic concepts Web Service is also called XML Web Service. WebService is a lightweight independent communication technology that can receive requests passed from the Internet or other systems on the Intranet. Yes: A software service delivered over the Web via SOAP, described using a WSDL file, and registered via UDDI. The simple understanding is: […]
ssm820 Implementation of tax portal based on web technology + vue
The article only shows part of the content. For detailed thesis and demonstration videos, you can send a private message to my KouKou. Graduation project (thesis) Title: Tax Portal Summary The fast-paced development of the modern economy and the constantly improving and upgrading of information technology have upgraded traditional data information management to software storage, […]
ssm828 Construction of jewelry shopping website system based on java + jsp
The article only shows part of the content. For detailed thesis and demonstration videos, you can send a private message to my KouKou. Graduation project (thesis) Topic: Jewelry Shopping Website Summary The fast-paced development of the modern economy and the constantly improving and upgrading of information technology have upgraded traditional data information management to software […]
Flutter development practice-inappwebview implements flutter and Javascript method calls
Flutter development practice-inappwebview implements flutter and Javascript method calls When using inappwebview, the flutter side needs to interact with JS and call the corresponding methods, JavaScript Handlers in inappwebview. 1. JavaScript Handlers To add JavaScript Handlers, you can use the InAppWebViewController.addJavaScriptHandler method, where you define the handlerName and the callback to be called when it […]
WebKist Inside: The composition of CSS style sheets
1 StyleSheet A StyleSheet consists of a series of Rules, which can be divided into 2 major categories: 1 Style Rule 2 At-Rule The following example shows Style Rule and At-Rule: // Style Rule div {<!– –> background-color: red; font-size: 12px; } //At-Rule @media print {<!– –> body { font-size: 10pt; } } The first […]
WebKit Inside: CSS stylesheet decoding character sets
There are three ways to introduce CSS style sheets: external style sheets, internal style sheets, and inline styles. Different introduction methods have different character set principles for decoding style sheets. External style sheet The external style sheet is introduced by the link tag. When WebKit parses the link tag, it will construct the CachedCSSStyleSheet object. […]