<< < 35 36 37 38 39 40 41 42 43 44 45 > >>   Sort: Date

Using HTML 'reset' Action Fields
How To Use "reset" Input/Action Fields? A "reset" input field is defined as &lt;input type="reset" .../&gt;. "reset" input fields can be used to create reset buttons in a form. When a reset button is clicked, the form will be refreshed by replacing user entered values with default values. On...
2017-04-08, 1319🔥, 0💬

Build and Run C++/CLI Programs
How to build and run a C++/CLI program with Visual Studio command tools? I have "C++/CLI Support" installed. If you have "C++/CLI Support" installed with Visual Studio, you can follow this tutorial to build and run a C++/CLI program: 1. Enter the C++/CLI program, HelloCLI.cpp with a text editor: // ...
2023-06-19, 1318🔥, 0💬

json_encode() - PHP to JSON Data Type Mapping
How data types are mapped from the PHP variable to the JSON text string when calling the json_encode() function? Data types are mapped from the PHP variable to the JSON text string based on the following table, when calling the json_encode() function: PHP Data Type &gt; JSON Data Type ----------...
2023-08-17, 1317🔥, 0💬

'urllib' Module - Internet Communication
Where to find tutorials on Python "urllib" Module? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Python "urllib" Module. What Is Python Module 'urllib' Sending an HTTP Request with 'urllib.request' http.client.HTTPResponse Objects HTTP POST w...
2018-09-24, 1317🔥, 0💬

'list' Literals and Conversions
How to specify "list" values in Python code? "list" values can be specified using "list" literals or the list() conversion function as shown in this tutorial: 1. "list" literals in [v1, v2, ...] format as shown below: &gt;&gt;&gt; ["Age", 25] ['Age', 25] &gt;&gt;&gt; ["Age", ...
2018-04-07, 1317🔥, 0💬

Quoting HTML Element Attribute Values
How To Quote Element Attribute Values Properly? You know that attribute values must be quoted. But how to attribute values properly? Here are some basic rules you should remember: An attribute value must be quoted. An attribute value can be quoted with double quotes as "...". An attribute value can ...
2023-09-23, 1314🔥, 0💬

Hyper Link Indexes within the HTML Document
How To Build Hyper Link Indexes within the Same Document? If you want build some hyper link indexes within the same document, you need use "a" elements to define some bookmarks, then use "a" elements to define hyper links that pointing to those bookmarks. The tutorial example below shows you how to ...
2017-07-03, 1314🔥, 0💬

XHTML 1.0 Document Types
How Many Document Types Defined in XHTML 1.0? There are only 3 document types are defined in XHTML 1.0: 1. Strict type: Only allow non-deprecated and non-frameset XHTML elements in this type. Strict type should be declared as below: &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "ht...
2023-11-06, 1313🔥, 0💬

Atom "feed/subtitle" Element
What is the Atom "feed/subtitle" element? How To Generate a "feed/subtitle" element? The &lt;subtitle&gt; element is not a required sub-element of the &lt;feed&gt; element. But it is strongly recommended that you provide a subtitle element for each of your feed documents. You should ...
2017-12-09, 1312🔥, 0💬

View Effective Policy of API Operation - 2017 Version
How to View Effective Policy of an API Operation 2017 version? My API operation is not calling the backend service. If your API operation is not calling the backend service, you need to view the effective policy of the API operation to see why backend service is not called. 1. Go to the publisher po...
2018-07-18, 1311🔥, 0💬

Dump Azure AD v1 Authentication Response
How to build a PHP script to dump Azure AD v1.0 Authentication Response? If you are use the Azure-AD-Authentication-Reques t-Test.htmltest Web form, you need to write a server side script to dump the Azure AD Authentication Response. Here is an example of PHP script, openID_receiver.php, that dumps ...
2022-05-01, 1310🔥, 0💬

Functions Are Objects Too
Are functions objects in Python? Yes, all functions are objects of "function" type in Python? You can verify this with the following Python code: &gt;&gt;&gt; def x(): ... print("Hello world!") ... &gt;&gt;&gt; type(x) &lt;class 'function'&gt; In other words, the "def...
2018-02-08, 1310🔥, 0💬

Using HTML 'textarea' Input Fields
What Is a "textarea" Tag/Element? A "textarea" element is an inline element that you can use to define a large input area in a form. Here are basic rules about a "textarea" element: "textarea" elements are inline elements. "textarea" elements can only be used as sub-elements of "form" elements. A "t...
2017-04-04, 1308🔥, 0💬

JSON to XML Conversion at convertjson.com
How to use the JSON to XML Conversion Tool at convertjson.com? If you want to try the JSON to XML Conversion Tool at convertjson.com, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at convertjson.com. 2. Enter the following JSON value in the text area: ["Hello", 3.14, tr...
2023-08-25, 1307🔥, 0💬

'float' Literals and Conversions
How to specify "float" values in Python code? "float" values can be specified using "float" literals or the float() conversion function as shown in this tutorial: 1. "float" literals in scientific notations as shown below: &gt;&gt;&gt; 3.14159 3.14159 &gt;&gt;&gt; -2.14 -2.14...
2018-04-07, 1306🔥, 0💬

Download and Install Golang SDK
How to download and install Golang SDK for Hyperledger Fabric? You can follow this tutorial to download and install Golang SDK for Hyperledger Fabric. 1. Download Golang SDK: $ export GOPATH=~/go $ echo $GOPATH /home/fyicenter/go $ go get github.com/hyperledger/fabric- sdk-go2. Verify Golang SDK pac...
2020-01-21, 1304🔥, 0💬

Validate Azure AD v1 id_token Signature
How to validate the id_token signature received from Azure AD v1.0 authentication response? You can use some existing libraries to perform the Azure AD "id_token" signature validation using libraries of different programming languages as suggested in "Azure Active Directory access tokens" article" ....
2021-05-16, 1301🔥, 0💬

HTML Description 'meta' Tag/Element
What Is the Description "meta" Tag/Element? The description "meta" element is a special meta element that provides a short description about the HTML document. The description "meta" element must include the "name" attribute as, name="description". Here is an example: &lt;meta name="description"...
2017-06-28, 1301🔥, 0💬

Values Submitted in HTML Submit Button Fields
What Are the Values Submitted on Submit Button Fields? A "submit" button input field does not allow viewers to enter any input values directly. But if a form is submitted, "submit" button input fields will be submitted with values based on the following rules: If a "submit" button is not clicked, no...
2017-04-08, 1299🔥, 0💬

Values Submitted in HTML Submit Button Fields
What Are the Values Submitted on Submit Button Fields? A "submit" button input field does not allow viewers to enter any input values directly. But if a form is submitted, "submit" button input fields will be submitted with values based on the following rules: If a "submit" button is not clicked, no...
2017-04-08, 1299🔥, 0💬

Floating HTML 'div' Elements
Can "div" Elements Be Floated? Can "div" elements be floated? The answer is yes. If you want to float a "div" block, you can use the "float" CSS property. Here is a tutorial example of floated "div" elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 St...
2017-03-11, 1298🔥, 0💬

Creating an HTML Link to Open a Document in New Window
How To Create an HTML Link to Open a Document in a New Window? Normally, if a hyper link is linked to an HTML document, the browser will display the linked document in the same window as the current document. But if you want to the browser to display the linked document in a new window, you can add ...
2017-06-16, 1297🔥, 0💬

Add Google as Identity Provider on Azure AD B2C
How to add Google as an identity provider to my Azure AD B2C account? I have registered Azure AD B2C as a Google client application. After you have registered Azure AD B2C as a Google client application, and recorded the "Client ID" and "Client Secret", you can now add Google as an identity provider...
2019-03-08, 1296🔥, 0💬

What Is an HTML Element?
What Is an HTML Element? An HTML element is the basic building block of an HTML document. An HTML element has the following features: An HTML element must have a name. An HTML element may have zero or more attributes. An HTML element may or may not have any content. Here is a good example of an HTML...
2023-11-06, 1295🔥, 0💬

<< < 35 36 37 38 39 40 41 42 43 44 45 > >>   Sort: Date