Sign In
Andrew's Blog
Random musings in code
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Control in Browser
Browse by Tags
MSDN Blogs
>
Andrew's Blog
>
All Tags
>
control in browser
Tagged Content List
Blog Post:
Common Issue: Security Exceptions
MSDNArchive
If you are hosting a control in the browser and have given it elevated permissions (we will use FullTrust for this example) you might notice that you are still getting security exceptions when you try to call protected APIs. Here's what is going on. When Internet Explorer creates an AppDomain to...
on
16 Feb 2006
Blog Post:
Strong names for controls in the browser
MSDNArchive
If you have a control hosted in the browser and you try to strong name it, you may find that it stops working. Looking at the IEHostLog ( http://blogs.msdn.com/andrewdownum/archive/2006/02/10/Using_DebugIEHost.aspx ) you might see something like this: Microsoft.IE.SecureFactory: System.Security.SecurityException...
on
10 Feb 2006
Blog Post:
Diagnosing Control in browser issues
MSDNArchive
Controls hosted in the browser can often be difficult to debug. If anything goes wrong with loading the dll or constructing the control instance, you will get nothing but the standard IE "something is wrong" image (the small icon in the top-left with colored shapes). Here's how I recommend diagnosing...
on
10 Feb 2006
Blog Post:
Exposing Events from managed controls
MSDNArchive
Earlier we talked about adding properties and methods to a managed control so that the page hosting the control can interact directly with the managed control programmatically. This time we will add events which is a little bit more difficult. To really understand how this works, you have to understand...
on
26 Jan 2006
Blog Post:
Properties and Methods
MSDNArchive
Now that we have a simple control hosted in the WebBrowser, it would be nice to be able to interact with it from the page. Using JavaScript, we can call methods on the managed control, and also get/set properties (which are essentially just method calls themselves). We'll expand our simple control...
on
25 Jan 2006
Blog Post:
Windows Forms Control In Browser scenario (introduction)
MSDNArchive
Recently I have been hearing from more and more people who are embedding Windows Forms controls into webpages and I thought that I would put together a series of blog posts on this technique. Since the original release of .NET Windows Forms has supported hosting controls inside of a web browser (Internet...
on
10 Jan 2006
Page 1 of 1 (6 items)