?? p416_lonely.cgi
字號:
#!/usr/local/bin/sewse //UNIX Only
function main(argc, argv)
{
var lonely_field = cgi.getVar("lonely");
// Check for call with no submit data
if ( !lonely_field )
{
lonely_field = "";
}
cgi.out("Content-Type: text/html \r \n");
cgi.out("\r \n");
cgi.out("<HTML>");
cgi.out("<BODY>");
\\ Uncomment one of the following two lines. Which depends on your OS
\\ Top line for UNIX, bottom line for Windows
\\ cgi.out("<FORM>");
\\ cgi.out("<FORM ACTION=\"http://myserver/cgi-bin/sewse.exe?persist.cgi\"
METHOD=\"POST\">");
cgi.out("<INPUT NAME=\"lonely\" TYPE=\"text\" VALUE=\"");
cgi.out(lonely_field);
cgi.out("\ ">");
cgi.out("</FORM>");
cgi.out("</BODY>");
cgi.out("</HTML>");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -