C
Chris
I have an aspx page that is called from an asp page. When I read the
httpcookie in asp.net I get the dashes and slashes converted to a "%3" and
such. Is there was way to convert it back to normal or am I reading in the
cookie the wrong way?
This is how I am reading it in
WorkDir = Request.Cookies("ibWDIR")
SessionID = Request.Cookies("ibGUID")
If Not WorkDir Is Nothing Then TextBox1.Text = WorkDir.Value
If Not SessionID Is Nothing Then TextBox2.Text = SessionID.Value
This is how I write it form the asp page
Response.Cookies("ibGUID") = "{56C17EC3-0746-4846-B4EB-7C71FE0948CB}"
Response.Cookies("ibWDIR") = "f:\ibits\illinois\working"
Is there an easier/better way to do this?
Chris
httpcookie in asp.net I get the dashes and slashes converted to a "%3" and
such. Is there was way to convert it back to normal or am I reading in the
cookie the wrong way?
This is how I am reading it in
WorkDir = Request.Cookies("ibWDIR")
SessionID = Request.Cookies("ibGUID")
If Not WorkDir Is Nothing Then TextBox1.Text = WorkDir.Value
If Not SessionID Is Nothing Then TextBox2.Text = SessionID.Value
This is how I write it form the asp page
Response.Cookies("ibGUID") = "{56C17EC3-0746-4846-B4EB-7C71FE0948CB}"
Response.Cookies("ibWDIR") = "f:\ibits\illinois\working"
Is there an easier/better way to do this?
Chris