<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Title here!</title>
</head>
<body>
<?php
function display_welcome()
{
print("Welcome, ");
print($_POST['user_name']);
}
function display_empty_form()
{
print <<<_HTML_
<FORM method="post" action="$_SERVER[PHP_SELF]">
Eneter your name:<input type="text" name="user_name">
<br/>
<input type="submit" value="submit name">
</FORM>
_HTML_;
}
if($_POST['user_name'])
{
display_welcome();
}
else
{
display_empty_form();
}
?>
</body>
</html>
訂閱:
張貼留言 (Atom)
讓ASP.NET網站在開發除錯時期擁有WEB.CONFIG文件轉換功能
ref: https://blog.kkbruce.net/2016/09/enabling-xml-document-transforms-for-all-asp-net-web-by-develop-time.html#.XoP1KGMzbRY
-
當 IDENTITY_INSERT 設為 OFF 時,無法將外顯值插入資料表 'xx' 的識別資料行中 id 未設定 自動遞增 設定完後 須重新 從資料庫更新模型
-
http://www.javaworld.com.tw/jute/post/view?bid=21&id=217814&tpg=9&ppg=1&sty=0&age=0
-
https://docs.microsoft.com/zh-tw/dotnet/framework/data/transactions/using-system-transactions-in-aspnet <system.web> <co...
沒有留言:
張貼留言