Cookie path being rewritten

lUnEwqnactfyk

New Member
Does anyone know why when I run a classic asp site and asp.net MVC side by side, that when I create cookies in classic asp, then .net integrated pipeline, adds path="/" to the end of each of them, hence creating duplicates. eg. If I create two cookies with a path of "/test" then when I run this classic asp page, 2 extra cookies get created with path="/".The raw headers look like so.\[code\]test1=aaa; path=/testtest2=bbb; path=/test test1=aaa; path=/test; path=/ test2=bbb; path=/test; path=/\[/code\]however I only ever created a test1 and test2 cookie with the path set to /test.If turn off integrated pipeline, I only get the two cookies with the correct path.If any further info is need please let me know.
 
Top