[thelist] ASP.net and IE 5.5 - issues

thelist at cjmarsh.com thelist at cjmarsh.com
Wed Jan 11 14:50:45 CST 2006


Sue

[..]

> I'm guessing IE 5.5 isn't doing the cookie bit. If Visual 
> Studio would let me debug using 5.5 it would help but it 
> insists on firing up IE 6.0 instead.  I'm sure it's the fact 
> that IE 5.5 isn't actually setting the cookie, now whether 

Try using Response.Write to check the value of the cookie that's being set.
When I have had no access to a debugger, I have used a method as follows to
debug:

Sub Debug(ByVal output)
    Response.Clear()
    Response.Write(output)
    Response.End()
End Sub

Usage as follows:

<%
'...
Call Debug(Request.Cookies("myValue"))
'...
%>

[..]

HTH

Regards

Chris Marsh

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.371 / Virus Database: 267.14.16/225 - Release Date: 09/01/2006
 




More information about the thelist mailing list