GridView - images using ImageField are blocked as cookies

  • Thread starter Thread starter The Colonel
  • Start date Start date
T

The Colonel

I'm using an ImageField in a GridView with the DataImageUrlField set to
a URL on the 'Net. The images are not displaying (the URL is correct -
I can copy and paste in the browser, they come right up), then I
noticed the IE6 "Privacy Report" icon shows up (the eye with a NO sign
in the status bar).

When I click it, it tells me my images were blocked, but refers to them
as cookies. Any way around this?

<code>
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
....

Dim pf As ImageField = Nothing

....
pf = New ImageField
pf.DataImageUrlField = strDataFields(i)
pf.HeaderText = strHeaderTexts(i)
pf.SortExpression = strDataFields(i)
gvMaster.Columns.Add(pf)

</code>
 
Back
Top