1

私は c# を使用してユーザー コントロールを作成しています。myControll.dll をビルドします。

しかし、どうすればこれをウェブページに埋め込むことができますか? 私は使用していませんAsp.net

私は次のことを試しました

<OBJECT id="myControll" name="myControll.dll#myControll.userControl" >
</OBJECT>

どうすればこれを達成できますか?

ありがとう、

4

1 に答える 1

3
  1. I know that framework 1.1 and 2.0 have config tools. Set full code trust for Url (127.0.0.7 - local for example). (3.0-3.5 use 2.0 tool)
  2. Add site (for example 127.0.0.1) to trusted sites zone in IE. May be you need enable other radio box in advanced.
  3. framework 4-4.5 have not config tools. I suppose that .manifest file or certificates or (SRP) Control Panel -> Administration -> Local Security Policy -> software restriction policy or AppLocker have not effect. I tried this but unsuccessful. Some people recommend COM attribute or check 2 boxes in project setting. I am not understand why (I test it of despair).

caspol may be help. http://msdn.microsoft.com/en-us/library/cb6t8dtz(v=vs.100).aspx

Sorry for my English!

于 2012-10-01T10:12:49.923 に答える