1
Answer

Reading cookie values in asp.net

vijay kumar

vijay kumar

13y
1.4k
1
Hi Techies,

I could able to read all the cookies available at "/" path. But could not get the cookie of other path "/retrieve/".

Request.ServerVariables["HTTP_COOKIE"] gives only the cookies available at "/" path. but not "/retrieve/" path.
 
Please help me in reading the cookie value through .NET application.
 
Regards,
Vijay Kumar E,
Answers (1)
0
varun goparaju
NA 2 0 13y
Dataset ds=new Dataset();
ds.ReadXml("path of xml file");
Gridview1.Datasource=ds;
Gridview1.DataBind();