Jump to content
Software FX Community

.NET framework security permissions on client computer.


User (Legacy)

Recommended Posts

Hello.

To be able to run charts in a webbrowser in a more interactive way (as a

.NET "component") I understand that the client has to be able to download a

ChartFX dll to be able to run these charts, right?

If I set my chart's HtmlTag-property to Auto, can ChartFX "feel" if the

client allows this download, and in that case deliver an ".NET chart", or is

that user doomed to get a blank image because they're not allowed to run

.NET components in their browser?

If ChartFX doesn't offer this functionality, does anyone know if there is a

way to programatically get this information from the client and from that

information decide how to deliver the chart to the client, Image or .NET for

example?

Best regards

Martin Emanuelsson

Gothenburg, Sweden

post-2107-13922378210033_thumb.jpg

Link to comment
Share on other sites

Yes setting to auto will do exactly what you want.

Setting to Auto WILL NOT doom a browser that doesn't have the dot net

framework installed.

You can get the HttpRequest object from your Page property

AND then using the HttpRequest there is a Browser Property.

it will be like this

HttpBrowserCapabilities browser = Page.Request.Browser;

if (browser.ActiveXControls) {

.... you can check the ClrVersion here too.

}

Hope this helps.

-c

"Martin Emanuelsson" <martin.emanuelsson@guide.se> wrote in message

news:b45VQrkzFHA.1764@webserver3.softwarefx.com...

> Hello.

>

> To be able to run charts in a webbrowser in a more interactive way (as a

> .NET "component") I understand that the client has to be able to download

> a

> ChartFX dll to be able to run these charts, right?

>

> If I set my chart's HtmlTag-property to Auto, can ChartFX "feel" if the

> client allows this download, and in that case deliver an ".NET chart", or

> is

> that user doomed to get a blank image because they're not allowed to run

> .NET components in their browser?

>

> If ChartFX doesn't offer this functionality, does anyone know if there is

> a

> way to programatically get this information from the client and from that

> information decide how to deliver the chart to the client, Image or .NET

> for

> example?

>

> Best regards

> Martin Emanuelsson

> Gothenburg, Sweden

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...