#include "SaRnHtml.h"
int SaTextBox(char* ename, char* evalue, int size, int maxsize);
ename
evalue
size
SIZE="size"
maxsize
MAXLENGTH="maxsize"
SaTextBox("Salary", "45000", 6, 8);will write:
<INPUT TYPE="text" NAME="Salary" VALUE="45000" SIZE="6" MAXLENGTH="8">to the output stream.