Function Reference


_INetExplorerCapable

Converts a string to IE(Internet Explorer) capable line

#include <Inet.au3>
_INetExplorerCapable ( $sIEString )

Parameters

$sIEString String to be converted

Return Value

Success: the converted string.
Failure: an empty string and sets the @error flag to non-zero.

Remarks

This converts IE uncapable characters to '%' and their hex value.

Example

#include <Inet.au3>
#include <MsgBoxConstants.au3>

MsgBox($MB_SYSTEMMODAL, "", _INetExplorerCapable(InputBox("", "Enter a string to convert into browser readable text")))