HtmlTextWriter.EncodeUrl(String) Метод

Определение

Осуществляет минимальную кодировку URL путем преобразования пробелов в указанном URL-адресе в строку "%20".

protected:
 System::String ^ EncodeUrl(System::String ^ url);
protected string EncodeUrl (string url);
member this.EncodeUrl : string -> string
Protected Function EncodeUrl (url As String) As String

Параметры

url
String

Строка, содержащая URL-адрес для кодирования.

Возвращаемое значение

String

Строка, содержащая закодированный URL-адрес.

Примеры

В следующем примере кода показано, как вызвать EncodeUrl метод для преобразования всех пробелов в URL-адресе, передаваемом в качестве параметра в вызове AddAttribute метода.

// If an <anchor> element is rendered and an href
// attribute has not been defined, call the AddAttribute
// method to add an href attribute
// and set it to http://www.cohowinery.com.
// Use the EncodeUrl method to convert any spaces to %20.
if ( TagKey == HtmlTextWriterTag::A )
{
   if (  !IsAttributeDefined( HtmlTextWriterAttribute::Href ) )
   {
      AddAttribute( "href", EncodeUrl( "http://www.cohowinery.com" ) );
   }
}
// If an <anchor> element is rendered and an href
// attribute has not been defined, call the AddAttribute
// method to add an href attribute
// and set it to http://www.cohowinery.com.
// Use the EncodeUrl method to convert any spaces to %20.
if (TagKey == HtmlTextWriterTag.A)
{
    if (!IsAttributeDefined(HtmlTextWriterAttribute.Href))
    {
        AddAttribute("href", EncodeUrl("http://www.cohowinery.com"));
    }
}
' If an <anchor> element is rendered and an href
' attribute has not been defined, call the AddAttribute
' method to add an href attribute
' and set it to http://www.cohowinery.com.
' Use the EncodeUrl method to convert any spaces to %20.
If TagKey = HtmlTextWriterTag.A Then
    If Not IsAttributeDefined(HtmlTextWriterAttribute.Href) Then
        AddAttribute("href", EncodeUrl("http://www.cohowinery.com"))
    End If
End If

Комментарии

Кодировка URL-адреса символа состоит из символа процента (%), за которым следует двузначное шестнадцатеричное представление (без учета регистра) ISO-Latin кодовой точки для символа. Шестнадцатеричное представление пространства равно 20.

Применяется к

См. также раздел