HTML: Siêu liên kết (HyperLink)1. GIỚI THIỆU SIÊU LIÊN KẾT1.1. Siêu liên kết:Khả năng chính của HTML là hỗ trợ các siêu liên kết. Một siêu liên kết cho phép người truy cập có thể đi từ trang web này đến trang web khác. Một liên kết gồm 3 phần:– Nguồn: chứa nội dung hiển thị khi người dùng truy cập đến, có thể là một trang web khác, một đoạn film, một hình ảnh hoặc …Read More
Code C#: Cơ chế ủy quyền (Delegate) trong C# (P.1)Ví dụ 1: Khai báo cơ chế ủy quyền (delegate) trong C# gọi các phương thức thực thiusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Delegates{ public delegate int MyDelegate(int x, int y); public class Vidu1{ public static int Cong(int x, int y){ &nb…Read More
Code C#: MultiCast Delegate - Cơ chế ủy quyền (Delegate) đa phương thức trong C#using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace MyMulticastDelegate{ public delegate void MulticastDelegate(int x, int y); public class Vidu2{ public static void Cong(int x, int y) { Console.WriteLine("Ban dang goi phuong thuc Cong(…Read More
Klik untuk melihat kode: