01.
HttpCookie getCookie = Request.Cookies[
"info"
];
02.
CustomerOnly ds =
new
CustomerOnly();
03.
CustomerTableAdapter dt =
new
CustomerTableAdapter();
04.
dt.Fill(ds.Customer);
05.
DataTable zip = ds.Tables[0];
06.
07.
for
(
int
i = 0; i < zip.Rows.Count; i++)
08.
{
09.
if
(zip.Rows[i][4].ToString() == getCookie.Values[
"username"
])