SynopsisWrite a block of raw ASCII or binary data to the user's browser. Prototype#include "webs.h" int websWriteBlockData(webs_t wp, char_t *buf, int len); Parameters
DescriptionThe websWriteBlockData procedure writes a block of raw data back to the user's browser. It can be used within both ASP procedures and Form procedures. Data will be immediately flushed to the user's browser. (See websWriteBlock if Unicode strings need to be written.) Return ValueThe number of bytes actually written. ExamplewebsWriteBlockData(wp, buf, sizeof(buf)); Stability ClassificationStable. See AlsoActive Server Pages, GoForms, websDone, websFooter, websHeader, websWrite, websWriteBlock |