I'm the story I was telling
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.

Thiết kế Website bằng ASP.NET + AJAX

Go down

Thiết kế Website bằng ASP.NET + AJAX Empty Thiết kế Website bằng ASP.NET + AJAX

Bài gửi by anbinhtrong Tue Jun 08, 2010 4:05 pm

anbinhtrong
anbinhtrong
Admin
Admin

Tổng số bài gửi : 216
Join date : 05/11/2009
Age : 35
Đến từ : BT

https://ngoctho.forum-viet.net

Về Đầu Trang Go down

Thiết kế Website bằng ASP.NET + AJAX Empty Re: Thiết kế Website bằng ASP.NET + AJAX

Bài gửi by anbinhtrong Fri Jun 11, 2010 11:21 pm

Part 2: Authentication, sử dụng hàm hash để mã hóa mật khẩu: http://www.15seconds.com/issue/020305.htm
anbinhtrong
anbinhtrong
Admin
Admin

Tổng số bài gửi : 216
Join date : 05/11/2009
Age : 35
Đến từ : BT

https://ngoctho.forum-viet.net

Về Đầu Trang Go down

Thiết kế Website bằng ASP.NET + AJAX Empty Re: Thiết kế Website bằng ASP.NET + AJAX

Bài gửi by anbinhtrong Sat Jun 12, 2010 8:35 am

anbinhtrong
anbinhtrong
Admin
Admin

Tổng số bài gửi : 216
Join date : 05/11/2009
Age : 35
Đến từ : BT

https://ngoctho.forum-viet.net

Về Đầu Trang Go down

Thiết kế Website bằng ASP.NET + AJAX Empty Re: Thiết kế Website bằng ASP.NET + AJAX

Bài gửi by anbinhtrong Sat Jun 12, 2010 9:31 am

Phương thức: FormsAuthentication.HashPasswordForStoringInConfigFile Method dùng để mã hóa password. Link: http://msdn.microsoft.com/en-us/library/f0024zw2%28vs.71%29.aspx
Có 3 dạng: Clear (Không mã hóa), MD5 và SHA1
anbinhtrong
anbinhtrong
Admin
Admin

Tổng số bài gửi : 216
Join date : 05/11/2009
Age : 35
Đến từ : BT

https://ngoctho.forum-viet.net

Về Đầu Trang Go down

Thiết kế Website bằng ASP.NET + AJAX Empty Re: Thiết kế Website bằng ASP.NET + AJAX

Bài gửi by anbinhtrong Sun Jun 13, 2010 3:10 pm

SQL Command Parameters
archar(MAX) and nvarchar(MAX) was introduced in SQL 2005. I started
using these but when I added parameters to an sqlcommand I was never
sure what to use as the size. I used to use int.MaxValue but I was
looking at some code online today which used -1. Here is my example (I
do everything inline to minimize lines of code.)

cmd.Parameters.Add("@Comment",
SqlDbType.VarChar, -1).Value = _Comment;

Simple enough.

Since
I do everything inline and since I rarely use the decimal data type in
sql, I was having problems. My numbers kept on getting rounded off. I
was too lazy to look it up at first but this week I felt the need to
finally do it the right way. Turns out you can't do it inline. Here is
my example (for a decimal(10,2) field).

SqlParameter
HoursParam = cmd.Parameters.Add("@Hours", SqlDbType.Decimal);
HoursParam.Value
= _Hours;
HoursParam.Precision = 10;
HoursParam.Scale = 2;

10
(Precision) is the total number of digits in the number. 2 (Scale) is
how many of those digits come after the decimal point.

Simple
also. This will probably serve as a quick reference for Googler's of the
world, hope it helps.
anbinhtrong
anbinhtrong
Admin
Admin

Tổng số bài gửi : 216
Join date : 05/11/2009
Age : 35
Đến từ : BT

https://ngoctho.forum-viet.net

Về Đầu Trang Go down

Thiết kế Website bằng ASP.NET + AJAX Empty Re: Thiết kế Website bằng ASP.NET + AJAX

Bài gửi by Sponsored content


Sponsored content


Về Đầu Trang Go down

Về Đầu Trang

- Similar topics

 
Permissions in this forum:
Bạn không có quyền trả lời bài viết