Archive for

五月, 2010

...

[筆記]ASP.NET 在formview下修改textbox值

no comments

假如要修改FormView1中的testTextBox的值


GeSHi Error: GeSHi could not find the language lang (using path /Library/WebServer/adminweb/blog/wp-content/plugins/codecolorer/lib/geshi/) (code 2)

這樣即可,不能用一般的方式是因為在FormView模式下

[PS3]FINAL FANTASY XIII 中文版

no comments


手機照的,有點鳥,請見諒。

More: Read the rest of this entry...

[APP] 暮蟬鳴泣之時(ひぐらしのなく頃に)

no comments

More: Read the rest of this entry...

[ASP.NET] 認證使用者是否為登入狀態

no comments

最近開始學習用ASP.NET的網頁,以往php可以自己寫一個函式來判斷使用者是否為登入狀態,而現在ASP.NET如過用提供的登入工具的話,可以用以下方法來確認使用者是否登入過。

1
2
3
4
5
6
7
8
if(User.Identity.IsAuthenticated)
{
      Response.Write("您已經登入。");
}
else
{
     Response.Write("尚未登入。");
}

參考資料:概略解釋 Forms Authentication 的運作