This library contains the implementation of the server based on CGI to implement dynamic web pages.
Author: Michael Hanus
Version: October 2017
runFormServerWithKey
:: String -> String -> IO HtmlForm -> IO ()
The server implementing an HTML form (possibly containing input fields). |
runFormServerWithKeyAndFormParams
:: String -> String -> [FormParam] -> IO HtmlForm -> IO ()
The server implementing an HTML form (possibly containing input fields). |
intForm
:: IO HtmlForm -> IO ()
Execute an HTML form in "interactive" mode. |
intFormMain
:: String -> String -> String -> String -> Bool -> String -> IO HtmlForm -> IO ()
Execute an HTML form in "interactive" mode with various parameters. |
The server implementing an HTML form (possibly containing input fields). It receives a message containing the environment of the client's web browser, translates the HTML form w.r.t. this environment into a string representation of the complete HTML document and sends the string representation back to the client's browser by binding the corresponding message argument.
|
The server implementing an HTML form (possibly containing input fields). It receives a message containing the environment of the client's web browser, translates the HTML form w.r.t. this environment into a string representation of the complete HTML document and sends the string representation back to the client's browser by binding the corresponding message argument.
|
Execute an HTML form in "interactive" mode with various parameters.
|