Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Rick  
#1 Posted : Monday, June 27, 2005 1:49:00 AM(UTC)
Rick

Rank: Member

Groups: Member
Joined: 5/9/2005(UTC)
Posts: 6

We are using Graphics Mill for .NET in a secure (SSL) environment. However, when the control loads we receive an "Unsecure items" error in the browser. This appears to be due to the control using an iframe with an empty SRC property for the bitmap area.

A possible fix for this issue is to use "javascript:;" for the value of the iframe SRC property when the control outputs its HTML. We have successfully used this same fix for similar situations in our own code and have yet to encounter any browser incompatibilities.

This is a very important issue for us and any feedback on a fix would be appreciated as soon as possible.

TIA!
-Rick
Fedor  
#2 Posted : Monday, June 27, 2005 12:02:00 PM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Hello Rick,

Thank you for your bug report. We will fix it in upcoming version 3.2 which will be available within a month.

Right now you can either submit case for update, or if you are registered user, then you can fix the problem yourself, as you have access to controls source code.

Just open Web Controls solution and in BitmapViewer.cs file BitmapViewer.Render method find the following code:

Code:
//<iframe id="xxx_CallbackFrame">
output.WriteBeginTag("iframe");
output.WriteAttribute("name", ClientID + "_CallbackFrame");


Just add after it:

Code:
output.WriteAttribute("src", "javascript:;");


Please let me know whether you have any questions.

Edited by user Friday, May 23, 2008 2:51:24 PM(UTC)  | Reason: Not specified

Best regards,
Fedor Skvortsov
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.