Home - Forums-.NET - FlyTreeView (ASP.NET) - Checkbox is rendered differently from two laptops

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

This forum related to following products: FlyTreeView for ASP.NET

Checkbox is rendered differently from two laptops
Link Posted: 25-Feb-2010 07:21
We implemented the webpart page running in WSS 3.0 with the tree control. The state of the check box (checked or unchecked) is stored in the database and retrieved dynamically when the tree node is accessed.
We checked the node and save it. Now, when we access the page from one laptop, the check box is rendered as checked. When we access the same node in the tree from another laptop, it is rendered as unchecked. Both laptops use the same version of IE and have the same security settings. On both laptops we use the same identity to access the page. Does the logic for rendering the checked check boxes loads first unchecked (GIF file chb0.gif), and then is loading the checked (GIF file chb1.gif) - I am seeing sometimes in Fiddler that GET request for chb0 runs fine (HTTP code 304), but for chb1.gif returns HTTP 401 on the laptop that is not rendering the checked check box.

thanks,
fb
Link Posted: 01-Mar-2010 23:05
FlyTreeView just renders required images into html document.
So if there's checked node then WebResource for chb1 is rendered (in case you're using one of predefined styles).

So you might need to execute particular HTTP request from one laptop. And see why it gets HTTP 401 (Unauthorized).
Link Posted: 10-Mar-2010 11:52
that's what I don't understand. I can see in Fiddler the response coming back indicates the node is checked "...Expanded="False" IsChecked="True" Disabled="False" IsCheckBox="True" ..."
Then goes request for chb1.gif (which is checkbox with checkmark in it). Response is 401 and the unchecked box image is displayed (chkbx0.gif)
If I get 401 on accessing chb1.gif, why does page still display the chb0.gif?
Link Posted: 16-Mar-2010 11:01
So what do you get when you point your browser directly to
http://whatever_path_you_have/chb1.gif
?
Link Posted: 25-Mar-2010 05:38
The image is rendered fine when direct URL to the GIF file is entered
Link Posted: 26-Mar-2010 04:45
So do you get the same problem with any other laptop?
Any antivirus software that could potentially block HTTP request?