Hi,
I want to be able to create a UserControl that will appear in a dhtml page running on the desktop of the user(start a web page locally without IIS).
I have create a a usercontrol with the following code:
using
System;using
System.Collections.Generic;using
System.ComponentModel;using
System.Drawing;using
System.Data;using
System.Text;using
System.Windows.Forms;using
System.Runtime.InteropServices;namespace
MyCOM{
[
ComVisible(true)][
Guid("77E95B43-525A-429b-8CD1-7D6F98BB934A")] public partial class UserControl1 : UserControl{
public UserControl1(){
InitializeComponent();
}
}
}
And the html page:
<
html> <head> <title>Test Page</title> </head> <body>Test1
<object id=¡±uc1" classid=¡±http:MyCOM.dll.dll#MyCOM.UserControl1¡±>Test2
</body></
html>Any ideas
Thanks