Hi, it's me again...
This time i have a problem with requesting cookies in C#.
I have stored a cookies name "username" and how can i correctly get back the value? I wrote the following but it returns error.
private string DefaultImageFolder = "" + Request.Cookies["username"].Value.ToString();
Errors:
CS0118: 'System.Web.UI.Page.Request' denotes a 'property' where a 'class' was expected.
Please help~~
thanks~~~