pMe | (Object) Reference to the PmaWebDir object where the event rises. |
---|---|
pEvent | (Object) Reference to object describing detailed information about the specific event.
pEvent.User - (Object) [for reading] The PmUser object that represents authorized user, who called the request for this page.
pEvent.Params - (String) [for reading] Text string that contains parameters in the URL.
This string has the form, for example "a=13&b=xyz". It means that "a" has the value "13" and "b" has the value "xyz". It is possible to separate individual values from this string by the Pm.HTTPGetFormValue method. pEvent.Method - (String) [for reading] Name of the HTTP method by which the parameters were sent:
"POST" - Sending parameters from the HTML form
"GET" - Sending parameters as a part of the required new page pEvent.FilePath - (String) [for reading] Relative path to the file that is requested from the Web browser.
pEvent.PageString - (String) [for read and write] Text string that contains the whole required HTML/XML document in the text form after the automatic replacing of keywords has been made. If the required file isn't a HTML/XML document, then this string is empty. The algorithm can change the content of the document by writing into this property.
pEvent.Modify - (Boolean) [for read and write] If the pEvent.PageString property has been changed, then the value of the property must be set to true. Otherwise changes will not be accepted.
If Data source = Text set into the pEvent.PageString property in the onPageModify event, then the pEvent.Modify property is preset to true. pEvent.MimeType - (String) [for read and write] Text string containing MIME type, determined from the extension of the requested page.
The MIME type is specified in HTTP response headers. Changing the type to another may be convenient for example if the browser is required not to display the content of the page when referring to it, but instead offer to download the file (for example by changing to MIME type application/octet-stream). |
<title>_(XXXXX)_</title>
if (pEvent.FilePath == "Page.htm")
{
var sReplaced = Pm.StringReplace(pEvent.PageString, "xxxxx", pEvent.User.Name);
pEvent.Modify = true;
pEvent.PageString = sReplaced;
}
var s;
if ("GET" == pEvent.Method)
{
switch (pEvent.FilePath)
{
case "abc.htm":
s = "<html><head><title>abc</title></head>";
s += "<body><p>Temperature = ";
s += pMe.Pm("/Data/#vars/temperature").Value;
s += "</p></body></html>";
break;
case "fff.htm":
// ...
break;
default:
// ...
break;
}
pEvent.PageString = s;
}