まず、次のようにデータベース テーブルを設計する必要があります。
ID
なのでint
userName
なのでvarchar
password
なのでvarchar
ValidityDate
なのでDate
asp.net
次に、任意の ORM を使用してアプリケーションでこのテーブルのクラスを作成します
。ORMのようlinq-to-sql
に、またはオブジェクトを使用して SQL クエリを実行することもできます。ここで例を確認しentity framework
てください。SqlConnection
SqlCommand
ValidityDate
if (DateTime.Today > ValidityDate)
{
// password expired , there are many ways to show a popup
// simple way a javascript alert
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "test", "
<script>alert('password expired!');</script>");
// check here for many jquery elegant popups
/* http://collegegfx.com/10-best-jquery-popup-plugins/ */
}
else
{
//password not expired ,login
}