2012年8月24日 星期五

MasterPage 簡單練習 Part1

我想要設計一個這樣的網頁:

  1. 畫面切割為2塊,上下各一塊,上半部約占畫面5分之1高度,放公司Logo
  2. 首頁會有帳號、密碼欄位
  3. 若帳號密碼正確,登入後將網頁轉到另一資料畫面,上半部秀出登入者帳號
作法:
  1. create new MasterPage.
  2. delete the default ContenePlaceHolder.
  3. insert Table at one Column and on Row ,Writing something at Header.
  4. insert  ContenePlaceHolder.
  5. create new web page name Login.aspx  and locate to MasterPage .
  6. at Login.aspx insert a new  ContenePlaceHolder、TextBox、Button .
  7. create new Web Page name Welcome.aspx  and locate to MasterPage .
  8. at Welcome.aspx,write something for user login.
  9. You can at MasterPage header add two HyperLink,first one connect to  Login.aspx 」,second connect to Welcome.aspx 」 .

2012年8月19日 星期日

登入時的驗證碼

在google上面搜尋"asp.net 驗證碼",前面2頁,找到關於驗證碼的方法有很多種,有簡單的,有複雜的,還探討到所謂的OCR( 光學辨識技術)。
我想,大部分的人看到這名詞就會先跳過吧!很幸運的找到一篇文章值得推薦,原來在CodePlex竟然有驗證碼的控制項可直接下載來使用!
Msdn 裡面有教學文件 http://msdn.microsoft.com/zh-tw/ee854995.aspx, 裡面有提到要編輯web.config,在區段加入一些東西,嚴格的說,是放在 -> 裡面,可是我不知道這元件產生的驗證碼,能不能避開OCR....