The following code works in IE7 and down but fails to set a cookie in IE8. Is anyone familiar with this problem.
Code:
<cfoutput>
<cfif url.sprok eq 2>
<cfcookie name = "sp" >
<cfcookie name = "sp" value = "#url.sprok#" expires = "never" >
<cfelse>
<cfcookie name = "sp" value = "#url.sprok#" >
</cfif>
</cfoutput>