login.aspx
<%@ page language="c#" codebehind="login.aspx.cs" autoeventwireup="false" inherits="aspnetpage.login" %>
login.aspx.cs
using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.drawing;
using system.web;
using system.web.sessionstate;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
namespace aspnetpage
///
/// 設計器支援所需的方法 - 不要使用**編輯器修改
/// 此方法的內容。
///
private void initializecomponent()
#endregion}}
global檔案
using system;
using system.collections;
using system.componentmodel;
using system.web;
using system.web.sessionstate;
using system.io;
namespace aspnetpage
#endregion}}
頁面控制器
對企業架構模式有些模糊,看了福勒的企業架構模式。準備寫一篇關於頁面控制器,前端控制器,以及程式控制器的文章。page controller 頁面控制器 頁面控制器含義 每乙個頁面對應後台乙個處理器。實際上存在連線等。乙個頁面需要多個處理器,也就是說每個action 對應乙個處理器。頁面控制器職責 1...
頁面過慮器製作
需求描述 在 中有一些網頁是受保護的,即只有規定的使用者才能訪問,而有一些網頁任何人都可以訪問。所以使用者在ie中輸入url提交後,伺服器必須對使用者輸入的url進行分析過慮。分析 需要考慮的問題 1 怎麼攔截使用者輸入的url?2 怎麼判斷輸入的url是否是受保護的?3 在使用者量很大的情況下,每...
伺服器忘記資料庫密碼處理方法
1.進入mysql配置檔案 vim etc my.cnf在mysqld下新增 skip grant tables 2.重新啟動mysql服務 3.登入mysql 特別注意 在修改mysql資料庫密碼時,首先確認linux伺服器出於安全的狀態,也就是沒有人能夠任意地連線mysql資料庫。因為在重新設定...