current location:Home > Technical Articles > Backend Development > XML/RSS Tutorial

  • Detailed explanation of a simple XML Schema sample code
    Detailed explanation of a simple XML Schema sample code
    We can see that the syntax of DTD is quite complicated, and it does not meet the standards of xml files and forms a system of its own. In other words, the DTD document itself is not a well-formed XML document. The above introduction to DTD is only an introduction. The purpose is to help everyone understand DTD files and create simple DTD files when necessary, because now Many XML applications are built on DTD.
    XML/RSS Tutorial 1532 2017-03-07 16:36:21
  • XML creates sortable and paginated data display pages
    XML creates sortable and paginated data display pages
    In web development, we often encounter paging display and sorting of data record sets. This is very easy to do on the server side using server-side code and database technology, such as: asp, php, jsp, etc. However, if you want to display multiple records on the client and sort them, it can be a headache. Below, we use Extensible Markup Language (xml, extensible markup language) and Extensible Stylesheet Language Transformations (XSLT, extensible style single language transformation), combined with XML Path Language (XPath, XML
    XML/RSS Tutorial 5406 2017-03-07 16:34:55
  • Detailed explanation of Javascript calling XML to create linked drop-down box code examples
    Detailed explanation of Javascript calling XML to create linked drop-down box code examples
    Two methods are used to link drop-down boxes in traditional HTML pages: 1) Directly hardcode the content in the drop-down box into the JavaScript of HTML, and call a Javascript function to write it into the drop-down box in a loop. This method is not suitable for situations where the contents of the drop-down box change frequently. Because the data source and JavaScript program are written on the same page.
    XML/RSS Tutorial 1400 2017-03-07 16:29:29
  • Detailed introduction to using xmlhttp to add domain name query function to the website
    Detailed introduction to using xmlhttp to add domain name query function to the website
    When we prepare to build a Web site, we must apply for an Internet domain name from the domain name registration agency. Therefore, we usually want to know whether the domain name we intend to use has been registered. In this case, we can visit the NIC website http://www.nic .net, click the "whois" link and enter the domain name to be queried, you can get the results we need.
    XML/RSS Tutorial 1627 2017-03-07 16:16:19
  • A detailed introduction to how to use XML data source objects in web design
    A detailed introduction to how to use XML data source objects in web design
    The xml data source object is an ActiveX control that allows you to manipulate data between XML files and HTML pages. This article will show you how to extract data from various XML data sources and how to display this data using JavaScript.
    XML/RSS Tutorial 1548 2017-03-07 16:14:28
  • Detailed introduction to graphic code of XML-based desktop applications
    Detailed introduction to graphic code of XML-based desktop applications
    As mentioned earlier, through XSL, we can submit the same data to end customers in different data forms. An XSL file describes the display method of the data. You can connect many XSLs to the same xml document to provide different based on HTML representation, so in fact, we can build XML based desktop applications. A graphical representation based on Windows architecture looks like this:
    XML/RSS Tutorial 1912 2017-03-06 16:48:03
  • Use xmldom to generate static html pages on the server side
    Use xmldom to generate static html pages on the server side
    In order to improve the access speed for the page data generated on the server side, it is often necessary to generate static htm pages. Usually, you can use fso to generate static htm pages. But if fso is banned or does not have permission to use fso, other methods are needed to solve it. Using xmldom, using its save() method is a good solution. Moreover, if the data is in xml format, use save( ) is faster than using fso, and the code reuse rate is also high.
    XML/RSS Tutorial 1805 2017-03-06 16:43:31
  • Detailed analysis of URL encoding issues containing Chinese characters
    Detailed analysis of URL encoding issues containing Chinese characters
    In xml applications, some URL information is often stored as xml data, and the URL parameters may contain Chinese characters. When using dom to parse xml data, Chinese characters can be encoded.
    XML/RSS Tutorial 1757 2017-03-06 16:40:51
  • Detailed introduction on how to use javascript+xml to implement paging
    Detailed introduction on how to use javascript+xml to implement paging
    In web-based technology, paging is an old problem, but it is a problem that everyone talks about. With the increasing application of xml technology, it is also possible to apply xml to paging. Of course, there are many online tutorials. Even though I was confused, I decided to write one myself and share it with everyone and make corrections.
    XML/RSS Tutorial 3038 2017-03-06 16:38:01
  • A detailed introduction to teach you how to quickly find information from an XML file
    A detailed introduction to teach you how to quickly find information from an XML file
    In the Internet era, xml files play a role in saving and transmitting data. The Soap protocol communicates information through Xml, and the database is accessed through Xml files, etc. So how to quickly obtain the required information from an XML file?
    XML/RSS Tutorial 2688 2017-03-06 16:35:06
  • Detailed introduction to using XMLHTTP to send extremely long XML form data
    Detailed introduction to using XMLHTTP to send extremely long XML form data
    When sending a large amount of xml to your IIS server as part of the POST data - such as in a TEXTAREA of an asp form - you may get some unexpected results. When the data is processed on the server, you may end up encountering errors due to the way you process the data. The reason is that when you submit data back to the server, there is a (data) size limit in the POST field. The purpose of this is to prevent possible intruders from sending an extremely large amount of data to the server in a denial of service (DoS) attack.
    XML/RSS Tutorial 1507 2017-03-06 16:28:35
  • Teach you a detailed explanation of how to quickly convert XML files through XSL
    Teach you a detailed explanation of how to quickly convert XML files through XSL
    It's good to use xml, but it's still not suitable as a language for displaying data. (It takes more checking than HTML!) The things made from XML files don't look so beautiful, but you can still find ways to remedy them.
    XML/RSS Tutorial 2075 2017-03-06 16:23:24
  • Detailed explanation of several easily confused concepts in XML database
    Detailed explanation of several easily confused concepts in XML database
    When developers talk about XML databases, they are often referring to two concepts: a database that stores XML data, and a DBMS that utilizes XML databases. Most major DBMS products allow you to integrate XML data into your application without changing the existing database. Now let us discuss XML database and explore its features.
    XML/RSS Tutorial 1587 2017-03-06 16:19:35
  • Detailed introduction to XML data island record editing and code adding examples in HTML
    Detailed introduction to XML data island record editing and code adding examples in HTML
    <HTML> <HEAD><Title>Record set in data island in HTML</Title></HEAD> <body bkcolor=#EEEEEE text=blue bgcolor="#00FFFF"> <Table align=center width=" 100%"><TR><TD align="center"> <h
    XML/RSS Tutorial 2179 2017-03-06 16:14:56
  • Getting Started with XML: What is XML and what can it do?
    Getting Started with XML: What is XML and what can it do?
    XML is eXtensible Markup Language. Tags refer to information symbols that computers can understand. Through such tags, computers can process articles containing various information. How to define these tags, you can choose an internationally accepted markup language, such as HTML, or you can use a markup language like XML that is freely decided by the relevant people. This is the extensibility of the language. XML is simplified and modified from SGML. It mainly uses XML, XSL and XPath, etc. The above paragraph is
    XML/RSS Tutorial 1845 2017-03-05 14:03:12

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28