[9 wrz 2009 | 0 Comments]
fasfa sdfas df asdf asf sda fsd fs fsa fsdfs

Photoshop »

[9 wrz 2009 | 1 Comments]

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa s adf ad ad fds fs dfasdf saf

Photoshop, asp.net »

[9 wrz 2009 | 0 Comments]

fasfa sdfas df asdf asf sda fsd fs fsa fsdfs

Photoshop »

[9 wrz 2009 | 3 Comments]

Blogengine Menu UsercontrolI have created a Menu Usercontrol for Blogengine.netThe control generates a UL menu, wich is CSS compatible and which you can find stylesheets to everywhere.It also have sorting variables so that the page can be sorted in different ways (since that is not standard in blogengine)For custom sorting, the keywords field can be used by putting 1, 2, 3 etc as a keyword depending on how you want the pages sortedThe menu is also put in a sessionvariable the first time, which will speed up subsequent loadings of the page. The refreshtime can also be set in the webcontrol.&... [Więcej]

»

[9 wrz 2009 | 0 Comments]

Maciej Aniserowicz | Application EventsPodejście klasyczne, "proceduralne" - fePrzejdźmy do kodu. Standardowo metoda uwierzytelniająca użytkownika mogłaby wyglądać jakoś tak: 1: public void Authenticate(string userName, string password) 2: { 3: User user = _usersRepository.GetUser(userName); 4: 5: if (user == null || user.Password != password) 6: { 7: throw new AuthenticationException("Invalid credentials"); 8: } 9: 10: // authentication logic... 11: }Uwaga: mam nadzieję, że każdy zdaje sobie sprawę z konieczności zastąpienia instrukcji user.Password == password w prawdziwy... [Więcej]