Host (HttpRequest property): Difference between revisions
Jump to navigation
Jump to search
m (match syntax table to syntax template; edits, tags and links) |
mNo edit summary |
||
Line 7: | Line 7: | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%currentString</th> | <tr><th>%currentString</th> | ||
<td>The string or <var>[[Longstrings|longstring]]</var> variable for the assignment of the current value of Host.</td></tr> | <td>The string or <var>[[Longstrings|longstring]]</var> variable for the assignment of the current value of <var>Host</var>.</td></tr> | ||
<tr><th>httpRequest</th> | <tr><th>httpRequest</th> | ||
<td>A previously defined and instantiated <var>HttpRequest</var> object.</td></tr> | <td>A previously defined and instantiated <var>HttpRequest</var> object.</td></tr> |
Latest revision as of 20:01, 21 June 2011
Target web server (HttpRequest class)
The Host property identifies the Internet site name or IP address of the target web server for the HTTP request. You set the target host by assigning a value to Host, and you fetch its value by referencing it without any parameters.
Syntax
%currentString = httpRequest:Host httpRequest:Host = newString
Syntax terms
%currentString | The string or longstring variable for the assignment of the current value of Host. |
---|---|
httpRequest | A previously defined and instantiated HttpRequest object. |
newString | A string expression identifying the host by either full domain name or IP number. If left unset, it defaults to "127.0.0.1" (the Internet loopback address, which points to the host on which you are running). |