Cho biết kểu Cookie được sử dụng bên dưới là kiểu nào?
Response.Cookies("MyASPNETPage").("Username") = "Nang Vu"
Response.Cookies("MyASPNETPage").("Password") = "TakeMeHome"
Trả lời:
Đáp án đúng: C
Đoạn code `Response.Cookies("MyASPNETPage").("Username") = "Nang Vu"` và `Response.Cookies("MyASPNETPage").("Password") = "TakeMeHome"` cho thấy cookie "MyASPNETPage" chứa nhiều giá trị (Username và Password). Bản thân cookie "MyASPNETPage" là một cookie, và "Username" và "Password" là các giá trị khác nhau được lưu trữ bên trong cookie đó. Do đó, cookie này là kiểu đa dạng, đa giá trị.





