Get Action Creates a new Queue with a unique name and returns it's name.
Parameters
Usage:
/OpenForum/Actions/CreateQueue?pageName=dummy
Server Side Javascript for GET method if(typeof(pageName)=="undefined")
{
transaction.setResult(transaction.SHOW_PAGE);
}
else
{
queueName = wiki.createQueue();
transaction.sendPage(queueName);
} by Admin on 21/04/2008 at 10:08 PM |
|