Reading cookie values in asp.net
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
Dataset ds=new Dataset();
ds.ReadXml("path of xml file");
Gridview1.Datasource=ds;
Gridview1.DataBind();