Tntnet 介绍
Tntnet 是一个 Web 应用服务器,可使用 C 来编写 Web 应用,可直接在 HTML 页面上编写 C 代码。完全多线程,支持 HTTP
keep-alive ,其动态页面几乎跟静态页面的性能一样。
示例页面:
<# this is a simple hello-world-application #> <%args> name; // define query-parameter // this defines a variable of type std::string with // the name "name" </%args> < **html** > < **head** > < **title** > **Hello World-application for tntnet** </ **title** > </ **head** > < **body** **bgcolor** ="#FFFFFF"> < **img** **src** ="tntnet.jpg" **align** ="right"> < **h1** > **Hello** <$ name.empty() ? "World" : name $></ **h1** > < **form** > What's your name? < **input** **type** ="text" **name** ="name" **value** ="<$name$>"> < **br** > < **input** **type** ="submit"> </ **form** > </ **body** > </ **html** >
Tntnet 官网
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。