Hello,<BR>I'm trying to make a Windows Form User control that i want <BR>to use in a web page.<BR>I write the control with only a property but after I <BR>compile the control and add to my web page, I couldn't see <BR>the property i have add before.<BR><BR>Code of my property:<BR><BR> Public Property comPort() As Integer<BR> Get<BR> Return AxNETComm1.CommPort<BR> End Get<BR> Set(ByVal Value As Integer)<BR> AxNETComm1.CommPort() = Value<BR> End Set<BR> End Property<BR><BR>AxNET is an object to acces to serial port (something <BR>similar to MScomm in visual basic).<BR><BR>What I'm doing wrong?<BR><BR>Thanks,<BR><BR>Vanesa<BR><BR><BR>