我如何获得价值&";QueryString

本文关键字:amp quot QueryString 何获得 | 更新日期: 2023-09-27 17:58:30

这是我的查询字符串URL

http/test.com/VoucherToHotel.aspx?Hotel_Name=Biverah%20Hotel%20&%20Suites&Ckeck_In=11/05/2014

我的问题是当我检索Hotel_Name时。酒店名称为"Biverah Hotel&Suites"

string Hotel_Name = Request.QueryString["Hotel_Name"];
string Check_In = Request.QueryString["Ckeck_In"];

但字符串Hotel_Name的值仅为"Biverah Hotel"。它没有显示"套房"。querySrting是否不支持"&"或我如何获取"&"值。

字符串Check_In很好。

我如何获得价值&";QueryString

您必须对'&'进行编码在查询中,就像您将"(空格字符)编码为%20一样。使用%26:http://p2p.wrox.com/html-code-clinic/5699-ampersand-query-string.html